summaryrefslogtreecommitdiff
path: root/home
diff options
context:
space:
mode:
Diffstat (limited to 'home')
-rw-r--r--home/start_menu.asm2
-rw-r--r--home/window.asm2
2 files changed, 2 insertions, 2 deletions
diff --git a/home/start_menu.asm b/home/start_menu.asm
index ed3d9470..5a531744 100644
--- a/home/start_menu.asm
+++ b/home/start_menu.asm
@@ -33,7 +33,7 @@ RedisplayStartMenu::
call EraseMenuCursor
jr .loop
.checkIfDownPressed
- bit 7, a
+ bit BIT_D_DOWN, a
jr z, .buttonPressed
; if the player pressed tried to go past the bottom item, wrap around to the top
CheckEvent EVENT_GOT_POKEDEX
diff --git a/home/window.asm b/home/window.asm
index 45b207a8..0abe366d 100644
--- a/home/window.asm
+++ b/home/window.asm
@@ -68,7 +68,7 @@ HandleMenuInput_::
ld [wCurrentMenuItem], a ; wrap to the bottom of the menu
jr .checkOtherKeys
.checkIfDownPressed
- bit 7, a
+ bit BIT_D_DOWN, a
jr z, .checkOtherKeys
.downPressed
ld a, [wCurrentMenuItem]