From 0f09900a2ab1c6c4cea2a6bde0b0119167e733d1 Mon Sep 17 00:00:00 2001 From: PabloMK7 Date: Tue, 25 Jul 2023 20:35:07 +0200 Subject: [PATCH] Fix luma config softlock (#1931) --- arm9/source/config.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/arm9/source/config.c b/arm9/source/config.c index 9aa04924..aeb963c4 100644 --- a/arm9/source/config.c +++ b/arm9/source/config.c @@ -1064,7 +1064,8 @@ void configMenu(bool oldPinStatus, u32 oldPinMode) if(pressed & BUTTON_START) { startPressed = true; - pressed |= (BUTTON_RIGHT); + // This moves the cursor to the last entry + pressed = BUTTON_RIGHT; } if(pressed & DPAD_BUTTONS)