diff options
author | dannye <33dannye@gmail.com> | 2020-05-20 19:40:33 -0500 |
---|---|---|
committer | dannye <33dannye@gmail.com> | 2020-05-20 20:02:53 -0500 |
commit | 10f9559eab8c93b94abb8ae8d1083704ad4e169a (patch) | |
tree | 7dbe7b152dde8a6e9b56664b5b8cdfc0d6be1253 /engine/menu/start_menu.asm | |
parent | b8954732a3eaa3a784a6e3eaaa68977a9ccd9816 (diff) |
Sync with pokered
Diffstat (limited to 'engine/menu/start_menu.asm')
-rwxr-xr-x | engine/menu/start_menu.asm | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/engine/menu/start_menu.asm b/engine/menu/start_menu.asm index af687432..498d1467 100755 --- a/engine/menu/start_menu.asm +++ b/engine/menu/start_menu.asm @@ -53,7 +53,7 @@ RedisplayStartMenu_DoNotDrawStartMenu: ld a, [wCurrentMenuItem] ld [wBattleAndStartSavedMenuItem], a ; save current menu selection ld a, b - and a, %00001010 ; was the Start button or B button pressed? + and %00001010 ; was the Start button or B button pressed? jp nz, CloseStartMenu call SaveScreenTilesToBuffer2 ; copy background from wTileMap to wTileMapBackup2 CheckEvent EVENT_GOT_POKEDEX @@ -61,17 +61,17 @@ RedisplayStartMenu_DoNotDrawStartMenu: jr nz, .displayMenuItem inc a ; adjust position to account for missing pokedex menu item .displayMenuItem - cp a, 0 + cp 0 jp z, StartMenu_Pokedex - cp a, 1 + cp 1 jp z, StartMenu_Pokemon - cp a, 2 + cp 2 jp z, StartMenu_Item - cp a, 3 + cp 3 jp z, StartMenu_TrainerInfo - cp a, 4 + cp 4 jp z, StartMenu_SaveReset - cp a, 5 + cp 5 jp z, StartMenu_Option ; EXIT falls through to here |