Rename GetFarHalfword to GetFarWord

Fixes #796
This commit is contained in:
Rangi
2021-01-09 15:16:05 -05:00
parent f773fd1dd8
commit 7d3ea88611
18 changed files with 40 additions and 40 deletions

View File

@@ -586,7 +586,7 @@ Edit [engine/items/item_effects.asm](https://github.com/pret/pokecrystal/blob/ma
+ push af
+ inc hl
ld a, BANK(PokedexDataPointerTable)
call GetFarHalfword
call GetFarWord
+ pop de
.SkipText:
@@ -602,7 +602,7 @@ Edit [engine/items/item_effects.asm](https://github.com/pret/pokecrystal/blob/ma
push bc
inc hl
inc hl
call GetFarHalfword
call GetFarWord
```
And edit [engine/pokegear/radio.asm](https://github.com/pret/pokecrystal/blob/master/engine/pokegear/radio.asm):
@@ -624,7 +624,7 @@ And edit [engine/pokegear/radio.asm](https://github.com/pret/pokecrystal/blob/ma
+ inc hl
+ ; hl = address
ld a, BANK(PokedexDataPointerTable)
call GetFarHalfword
call GetFarWord
- call PokedexShow_GetDexEntryBank
+ ld a, b
push af