diff options
author | ElectroDeoxys <ElectroDeoxys@gmail.com> | 2019-07-06 21:21:35 +0100 |
---|---|---|
committer | ElectroDeoxys <ElectroDeoxys@gmail.com> | 2019-07-06 21:21:35 +0100 |
commit | c8cb81d6f9a8721eab40a40f8ec50d3384bdeb65 (patch) | |
tree | 2b1f1d5784e2f9a6137809e78a96bdc5419b82a6 /src/engine/home.asm | |
parent | f7362f9c484afc6486e8e309f194a196bd233908 (diff) |
Label more bank 2
Diffstat (limited to 'src/engine/home.asm')
-rw-r--r-- | src/engine/home.asm | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/src/engine/home.asm b/src/engine/home.asm index c0c0485..e0e9974 100644 --- a/src/engine/home.asm +++ b/src/engine/home.asm @@ -9279,12 +9279,12 @@ CompareDEtoBC: ; 3090 (0:3090) cp c ret -CallDuelCheckInterface: ; 3096 (0:3096) +DuelCheckInterface: ; 3096 (0:3096) ldh a, [hBankROM] push af - ld a, BANK(DuelCheckInterface) + ld a, BANK(_DuelCheckInterface) call BankswitchROM - call DuelCheckInterface + call _DuelCheckInterface pop af call BankswitchROM ret @@ -9302,16 +9302,16 @@ Func_30a6: ; 30a6 (0:30a6) call BankswitchROM ret -Func_30bc: ; 30bc (0:30bc) +DrawPlayArea: ; 30bc (0:30bc) ld a, h ld [wTurnHolder1], a ld a, l ld [wTurnHolder2], a ldh a, [hBankROM] push af - ld a, BANK(Func_8211) + ld a, BANK(_DrawPlayArea) call BankswitchROM - call Func_8211 + call _DrawPlayArea call DrawWideTextBox pop af call BankswitchROM |