diff options
author | DizzyEggg <jajkodizzy@wp.pl> | 2018-12-16 21:10:01 +0100 |
---|---|---|
committer | DizzyEggg <jajkodizzy@wp.pl> | 2018-12-16 21:10:01 +0100 |
commit | aae36b5653537a063560dc2c7df261cc7b950a4c (patch) | |
tree | 687136a10f46df779ae5698061432f6b78635f47 /src/start_menu.c | |
parent | f1421d94c384c1bd76304fcb961ca28d7f0e7e20 (diff) |
6k left
Diffstat (limited to 'src/start_menu.c')
-rw-r--r-- | src/start_menu.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/start_menu.c b/src/start_menu.c index 079f05be0..62fdc07d5 100644 --- a/src/start_menu.c +++ b/src/start_menu.c @@ -574,13 +574,13 @@ static bool8 HandleStartMenuInput(void) if (gMain.newKeys & DPAD_UP) { PlaySE(SE_SELECT); - sStartMenuCursorPos = MoveMenuCursor(-1); + sStartMenuCursorPos = Menu_MoveCursor(-1); } if (gMain.newKeys & DPAD_DOWN) { PlaySE(SE_SELECT); - sStartMenuCursorPos = MoveMenuCursor(1); + sStartMenuCursorPos = Menu_MoveCursor(1); } if (gMain.newKeys & A_BUTTON) |