From f61ea738bae45446388d941eee5302a7f413cbd4 Mon Sep 17 00:00:00 2001 From: Willy-JL <49810075+Willy-JL@users.noreply.github.com> Date: Wed, 15 Mar 2023 05:14:33 +0000 Subject: [PATCH] Fix wii ui left input --- applications/services/gui/modules/menu.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/applications/services/gui/modules/menu.c b/applications/services/gui/modules/menu.c index e42f2ab51..e81868b7e 100644 --- a/applications/services/gui/modules/menu.c +++ b/applications/services/gui/modules/menu.c @@ -331,7 +331,7 @@ static void menu_process_left(Menu* menu) { if(count % 2) { model->position = count - 1; } else { - model->position = count - 1 + model->position % 2; + model->position = count - 2 + model->position % 2; } } else { model->position -= 2;