make LEFT/RIGHT on wad list menu more natural

This commit is contained in:
Naim2000 2024-05-02 20:37:31 -05:00
parent d18498361e
commit 60c42a760c
1 changed files with 2 additions and 2 deletions

View File

@ -1077,7 +1077,7 @@ getList:
selected += ENTRIES_PER_PAGE;
if (selected >= fileCnt)
selected = 0;
selected = fileCnt - 1;
}
else if (buttons & WPAD_BUTTON_DOWN)
{
@ -1089,7 +1089,7 @@ getList:
selected -= ENTRIES_PER_PAGE;
if (selected < 0)
selected = (fileCnt - 1);
selected = 0;
}
else if (buttons & WPAD_BUTTON_HOME)
{