swap LEFT and RIGHT on wad list menu

Closes #12
This commit is contained in:
Naim2000 2024-05-02 09:26:24 -05:00
parent 1a825dcfce
commit d5a817b680
1 changed files with 2 additions and 2 deletions

View File

@ -1072,7 +1072,7 @@ getList:
if (--selected < 0)
selected = (fileCnt - 1);
}
else if (buttons & WPAD_BUTTON_LEFT)
else if (buttons & WPAD_BUTTON_RIGHT)
{
selected += ENTRIES_PER_PAGE;
@ -1084,7 +1084,7 @@ getList:
if (++selected >= fileCnt)
selected = 0;
}
else if (buttons & WPAD_BUTTON_RIGHT)
else if (buttons & WPAD_BUTTON_LEFT)
{
selected -= ENTRIES_PER_PAGE;