diff options
author | Rangi <remy.oukaour+rangi42@gmail.com> | 2021-02-13 19:48:21 -0500 |
---|---|---|
committer | Rangi <remy.oukaour+rangi42@gmail.com> | 2021-02-13 19:48:21 -0500 |
commit | 205fd1ac81c2d1dcec010c478979bd6159edc72d (patch) | |
tree | 00b70faa84c87265b6ee4e68f0df1fc4946afca2 /engine/link | |
parent | b6ec1cd884e34cd67c18e6faae7054b5b30b6c9e (diff) |
Identify hUILayoutFlags and hPikachuSpriteVRAMOffset
Diffstat (limited to 'engine/link')
-rw-r--r-- | engine/link/cable_club.asm | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/engine/link/cable_club.asm b/engine/link/cable_club.asm index c75ab200..5124c744 100644 --- a/engine/link/cable_club.asm +++ b/engine/link/cable_club.asm @@ -346,10 +346,10 @@ TradeCenter_SelectMon: ld a, 1 ld [wTopMenuItemX], a .enemyMonMenu_HandleInput - ld hl, hFlagsFFFA + ld hl, hUILayoutFlags set 1, [hl] call HandleMenuInput - ld hl, hFlagsFFFA + ld hl, hUILayoutFlags res 1, [hl] and a jp z, .getNewInput @@ -411,10 +411,10 @@ TradeCenter_SelectMon: lb bc, 6, 1 call ClearScreenArea .playerMonMenu_HandleInput - ld hl, hFlagsFFFA + ld hl, hUILayoutFlags set 1, [hl] call HandleMenuInput - ld hl, hFlagsFFFA + ld hl, hUILayoutFlags res 1, [hl] and a ; was anything pressed? jr nz, .playerMonMenu_SomethingPressed |