diff options
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 |