This commit is contained in:
wu58430 2023-12-04 21:49:50 +08:00
parent 8c71d28563
commit 6852d5e0ff

View file

@ -1453,11 +1453,11 @@ static void MENU_Key_MENU(const bool bKeyPressed, const bool bKeyHeld)
{ {
if (edit_index < 0) if (edit_index < 0)
{ {
edit_index = 0; // edit_index = 0;
while (edit_index < 4) // while (edit_index < 4)
edit[edit_index++] = '_'; // edit[edit_index++] = '_';
edit_index = 0; // 'edit_index' is going to be used as the cursor position edit_index = 0; // 'edit_index' is going to be used as the cursor position
// make a copy so we can test for change when exiting the menu item // make a copy so we can test for change when exiting the menu item
memmove(edit_original, edit, sizeof(edit_original)); memmove(edit_original, edit, sizeof(edit_original));