diff options
author | Astatin <[email protected]> | 2024-11-11 17:56:54 +0900 |
---|---|---|
committer | Astatin <[email protected]> | 2024-11-11 17:56:54 +0900 |
commit | d605c2900ae7c62f1937e250a2ae489678d99214 (patch) | |
tree | 4c1fc76f3b9e50b5f8461784fc349bff685e465a /buttons.gbasm | |
parent | 5eb8b27696e9fa2f60fd75ffb1b31fe049fcc772 (diff) |
Add dungeon menu choice selection mode
Diffstat (limited to 'buttons.gbasm')
-rw-r--r-- | buttons.gbasm | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/buttons.gbasm b/buttons.gbasm index fd17f71..175f95d 100644 --- a/buttons.gbasm +++ b/buttons.gbasm @@ -2,6 +2,10 @@ Pad_Button_Check: PUSH AF PUSH BC + LD A, $mem_button_direction + LD $mem_last_button_direction, A + LD A, $mem_button_action + LD $mem_last_button_action, A LD A, $20 LD $reg_joypad, A LD A, $reg_joypad |