From 917d2b43615f8a347ddac74ee3716e637ffe72e0 Mon Sep 17 00:00:00 2001 From: true Date: Sat, 26 Oct 2024 20:58:59 -0700 Subject: [PATCH] fix upright button mapping scroll buttons inverted --- nametag8_CH592/user/ui/btn.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/nametag8_CH592/user/ui/btn.c b/nametag8_CH592/user/ui/btn.c index a8ce240..e03bede 100644 --- a/nametag8_CH592/user/ui/btn.c +++ b/nametag8_CH592/user/ui/btn.c @@ -22,8 +22,8 @@ uint8_t btn_held; -static uint8_t btn_map_upr[BTN_COUNT] = {3, 0, 1, 2, 4}; // bot left, top left, bot right, top right -static uint8_t btn_map_rot[BTN_COUNT] = {2, 1, 3, 0, 4}; +static uint8_t btn_map_upr[BTN_COUNT] = {0, 3, 1, 2, 4}; // bot left, top left, bot right, top right +static uint8_t btn_map_rot[BTN_COUNT] = {2, 1, 3, 0, 4}; // bot left, top left, bot right, top right