diff options
| author | Rangi <remy.oukaour+rangi42@gmail.com> | 2021-01-09 15:16:05 -0500 |
|---|---|---|
| committer | Rangi <remy.oukaour+rangi42@gmail.com> | 2021-01-09 15:16:05 -0500 |
| commit | 7d3ea88611efbc2f9b903063e2816b1cae1bad35 (patch) | |
| tree | 7475d498e4a1695aefd4a7e3356e735a51245d35 /engine/battle | |
| parent | f773fd1dd89782eb1e92b850c7409a8d8be37651 (diff) | |
Rename GetFarHalfword to GetFarWord
Fixes #796
Diffstat (limited to 'engine/battle')
| -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 8015eab4c..e1c3ac364 100644 --- a/engine/battle/effect_commands.asm +++ b/engine/battle/effect_commands.asm @@ -47,7 +47,7 @@ DoMove: add hl, bc add hl, bc ld a, BANK(MoveEffectsPointers) - call GetFarHalfword + call GetFarWord ld de, wBattleScriptBuffer @@ -98,7 +98,7 @@ DoMove: pop bc ld a, BANK(BattleCommandPointers) - call GetFarHalfword + call GetFarWord call .DoMoveEffectCommand @@ -6731,7 +6731,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 |
