This commit is contained in:
wu58430 2023-12-04 22:50:59 +08:00
parent d108f204d1
commit 60a28c1a0f

View file

@ -1449,8 +1449,8 @@ static void MENU_Key_MENU(const bool bKeyPressed, const bool bKeyHeld)
if (edit_index >= 0 && edit_index < 4) if (edit_index >= 0 && edit_index < 4)
{ // editing the channel name characters { // editing the channel name characters
if (++edit_index < 4) if (++edit_index >= 4)
return; // next char {
// exit // exit
if (memcmp(edit_original, edit, sizeof(edit_original)) == 0) if (memcmp(edit_original, edit, sizeof(edit_original)) == 0)
@ -1464,6 +1464,7 @@ static void MENU_Key_MENU(const bool bKeyPressed, const bool bKeyHeld)
gFlagAcceptSetting = false; gFlagAcceptSetting = false;
gAskForConfirmation = 0; gAskForConfirmation = 0;
} }
}
} }
} }