diff options
author | Remy Oukaour <remy.oukaour@gmail.com> | 2017-12-24 15:03:20 -0500 |
---|---|---|
committer | Remy Oukaour <remy.oukaour@gmail.com> | 2017-12-24 15:03:20 -0500 |
commit | 9973e43d5aaffeef9d68994a665d2b0231f56f41 (patch) | |
tree | 5a22379c74a3a7032422c10c9197823188d12931 /battle/effect_commands.asm | |
parent | 4e5fd7a521085d10a05ef5e3b9bab623dc28577a (diff) |
Fix issue #345:
- GetMonFrontpic → GetEnemyMonFrontpic
- GetMonBackpic → GetBattleMonBackpic
- FrontpicPredef → GetAnimatedFrontpicPredef
- GetFrontpic → GetMonFrontpic
- GetBackpic → GetMonBackpic
- CutAndPasteMap → PadMapForHDMATransfer
Diffstat (limited to 'battle/effect_commands.asm')
-rw-r--r-- | battle/effect_commands.asm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/battle/effect_commands.asm b/battle/effect_commands.asm index d04da6b52..8f148c883 100644 --- a/battle/effect_commands.asm +++ b/battle/effect_commands.asm @@ -6299,11 +6299,11 @@ BattleCommand_Curl: ; 365a7 BattleCommand_RaiseSubNoAnim: ; 365af - ld hl, GetMonBackpic + ld hl, GetBattleMonBackpic ld a, [hBattleTurn] and a jr z, .PlayerTurn - ld hl, GetMonFrontpic + ld hl, GetEnemyMonFrontpic .PlayerTurn: xor a ld [hBGMapMode], a |