diff options
Diffstat (limited to 'home/window.asm')
-rw-r--r-- | home/window.asm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/home/window.asm b/home/window.asm index 1be272f9..a3c313c0 100644 --- a/home/window.asm +++ b/home/window.asm @@ -50,9 +50,9 @@ HandleMenuInput_:: ld [wCheckFor180DegreeTurn], a ldh a, [hJoy5] ld b, a - bit 0, a ; pressed A key? + bit BIT_A_BUTTON, a jr nz, .checkOtherKeys - bit 6, a ; pressed Up key? + bit BIT_D_UP, a jr z, .checkIfDownPressed .upPressed ld a, [wCurrentMenuItem] ; selected menu item |