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/items | |
parent | 4c43fa538dd8a48408d34307dc2e428084f2bb2a (diff) |
Rename GetFarHalfword to GetFarWord
Diffstat (limited to 'engine/items')
-rw-r--r-- | engine/items/item_effects.asm | 6 | ||||
-rw-r--r-- | engine/items/print_item_description.asm | 2 |
2 files changed, 4 insertions, 4 deletions
diff --git a/engine/items/item_effects.asm b/engine/items/item_effects.asm index 9f8c14c3..77828b60 100644 --- a/engine/items/item_effects.asm +++ b/engine/items/item_effects.asm @@ -751,7 +751,7 @@ HeavyBallMultiplier: add BANK("Pokedex Entries 001-064") ld d, a ld a, BANK(PokedexDataPointerTable) - call GetFarHalfword + call GetFarWord .SkipText: ld a, d @@ -764,7 +764,7 @@ HeavyBallMultiplier: push bc inc hl inc hl - call GetFarHalfword + call GetFarWord srl h rr l @@ -868,7 +868,7 @@ MoonBallMultiplier: add hl, bc add hl, bc ld a, BANK(EvosAttacksPointers) - call GetFarHalfword + call GetFarWord pop bc push bc diff --git a/engine/items/print_item_description.asm b/engine/items/print_item_description.asm index ad6a170e..e2ed8785 100644 --- a/engine/items/print_item_description.asm +++ b/engine/items/print_item_description.asm @@ -24,7 +24,7 @@ PrintItemDescription: add hl, bc add hl, bc ld a, BANK(ItemDescriptions) - call GetFarHalfword + call GetFarWord ld d, h ld e, l pop hl |