From baf247feaa2997fc1e90f0e10ec2f2e2e21cd949 Mon Sep 17 00:00:00 2001 From: Jacques Gagnon Date: Fri, 19 Apr 2024 19:30:05 -0400 Subject: [PATCH] [ADAPTER] Fix MD/Genesis mode button mapping --- main/adapter/wired/genesis.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/main/adapter/wired/genesis.c b/main/adapter/wired/genesis.c index e6f46937..38cfe54d 100644 --- a/main/adapter/wired/genesis.c +++ b/main/adapter/wired/genesis.c @@ -156,7 +156,7 @@ static DRAM_ATTR const uint32_t genesis_btns_mask[2][3][32] = { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, BIT(P1_Y), - BIT(P1_MODE), 0, 0, 0, + 0, BIT(P1_MODE), 0, 0, BIT(P1_X), BIT(P1_X), 0, 0, BIT(P1_Z), BIT(P1_Z), 0, 0, }, @@ -191,7 +191,7 @@ static DRAM_ATTR const uint32_t genesis_btns_mask[2][3][32] = { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, BIT(P2_Y), - BIT(P2_MODE), 0, 0, 0, + 0, BIT(P2_MODE), 0, 0, BIT(P2_X), BIT(P2_X), 0, 0, BIT(P2_Z), BIT(P2_Z), 0, 0, },