diff options
Diffstat (limited to 'home/battle.asm')
-rw-r--r-- | home/battle.asm | 10 |
1 files changed, 2 insertions, 8 deletions
diff --git a/home/battle.asm b/home/battle.asm index 24abe4cd3..e88adef02 100644 --- a/home/battle.asm +++ b/home/battle.asm @@ -142,10 +142,6 @@ FarCopyRadioText:: ret MobileTextBorder:: - -CELL_PHONE_TOP EQU $5e -CELL_PHONE_BOTTOM EQU $5f - ; For mobile link battles only. ld a, [wLinkMode] cp LINK_MOBILE @@ -154,9 +150,9 @@ CELL_PHONE_BOTTOM EQU $5f ; Draw a cell phone icon at the ; top right corner of the border. hlcoord 19, 12 - ld [hl], CELL_PHONE_TOP + ld [hl], $5e ; top hlcoord 19, 13 - ld [hl], CELL_PHONE_BOTTOM + ld [hl], $5f ; bottom ret BattleTextBox:: @@ -186,7 +182,6 @@ StdBattleTextBox:: ret GetBattleAnimPointer:: - ld a, BANK(BattleAnimations) rst Bankswitch @@ -201,7 +196,6 @@ GetBattleAnimPointer:: ret GetBattleAnimByte:: - push hl push de |