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/items | |
parent | f773fd1dd89782eb1e92b850c7409a8d8be37651 (diff) |
Rename GetFarHalfword to GetFarWord
Fixes #796
Diffstat (limited to 'engine/items')
-rw-r--r-- | engine/items/item_effects.asm | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/engine/items/item_effects.asm b/engine/items/item_effects.asm index eaff68fc2..d4a969c24 100644 --- a/engine/items/item_effects.asm +++ b/engine/items/item_effects.asm @@ -784,7 +784,7 @@ HeavyBallMultiplier: add hl, de add hl, de ld a, BANK(PokedexDataPointerTable) - call GetFarHalfword + call GetFarWord .SkipText: call GetPokedexEntryBank @@ -797,7 +797,7 @@ HeavyBallMultiplier: push bc inc hl inc hl - call GetFarHalfword + call GetFarWord srl h rr l @@ -901,7 +901,7 @@ MoonBallMultiplier: add hl, bc add hl, bc ld a, BANK(EvosAttacksPointers) - call GetFarHalfword + call GetFarWord pop bc push bc |