diff options
author | yenatch <yenatch@gmail.com> | 2017-12-30 21:32:45 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-12-30 21:32:45 -0500 |
commit | 92fba8821c1746952d4c48c8cc453fcd0ae9cc83 (patch) | |
tree | 49b38fec69146c5b2201de90920a09b0dccf9f40 /engine/scrolling_menu.asm | |
parent | 93916b5536e028d7a50b9b65618aba25be3e8006 (diff) | |
parent | b40181db416b0b2bcd7b8c2616572314ff14f1bf (diff) |
Merge pull request #450 from roukaour/master
Constants for TextBoxFlags
Diffstat (limited to 'engine/scrolling_menu.asm')
-rwxr-xr-x | engine/scrolling_menu.asm | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/engine/scrolling_menu.asm b/engine/scrolling_menu.asm index 08a718df1..32f22188a 100755 --- a/engine/scrolling_menu.asm +++ b/engine/scrolling_menu.asm @@ -65,21 +65,21 @@ ScrollingMenuJoyAction: ; 24609 ld a, [hJoyPressed] and BUTTONS or b - bit 0, a ; A + bit A_BUTTON_F, a jp nz, .a_button - bit 1, a ; B + bit B_BUTTON_F, a jp nz, .b_button - bit 2, a ; Select + bit SELECT_F, a jp nz, .select - bit 3, a ; Start + bit START_F, a jp nz, .start - bit 4, a ; Right + bit D_RIGHT_F, a jp nz, .d_right - bit 5, a ; Left + bit D_LEFT_F, a jp nz, .d_left - bit 6, a ; Up + bit D_UP_F, a jp nz, .d_up - bit 7, a ; Down + bit D_DOWN_F, a jp nz, .d_down jr .loop ; 24640 |