diff options
author | Rangi <remy.oukaour+rangi42@gmail.com> | 2021-01-09 15:16:20 -0500 |
---|---|---|
committer | Rangi <remy.oukaour+rangi42@gmail.com> | 2021-01-09 15:16:20 -0500 |
commit | 51aa06097fd99ecbd431aba32cf8b5120a93e433 (patch) | |
tree | f1dba301f2270543742ad3cd56d875fa5f639cdc /engine/battle/effect_commands.asm | |
parent | 4c43fa538dd8a48408d34307dc2e428084f2bb2a (diff) |
Rename GetFarHalfword to GetFarWord
Diffstat (limited to 'engine/battle/effect_commands.asm')
-rw-r--r-- | engine/battle/effect_commands.asm | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/engine/battle/effect_commands.asm b/engine/battle/effect_commands.asm index 58d7d016..1791cbdb 100644 --- a/engine/battle/effect_commands.asm +++ b/engine/battle/effect_commands.asm @@ -58,7 +58,7 @@ DoMove: add hl, bc add hl, bc ld a, BANK(MoveEffectsPointers) - call GetFarHalfword + call GetFarWord ld de, wBattleScriptBuffer @@ -109,7 +109,7 @@ DoMove: pop bc ld a, BANK(BattleCommandPointers) - call GetFarHalfword + call GetFarWord call .DoMoveEffectCommand @@ -6681,7 +6681,7 @@ GetItemHeldEffect: ld a, ITEMATTR_STRUCT_LENGTH call AddNTimes ld a, BANK(ItemAttributes) - call GetFarHalfword + call GetFarWord ld b, l ld c, h pop hl |