From 7d3ea88611efbc2f9b903063e2816b1cae1bad35 Mon Sep 17 00:00:00 2001 From: Rangi Date: Sat, 9 Jan 2021 15:16:05 -0500 Subject: Rename GetFarHalfword to GetFarWord Fixes #796 --- docs/design_flaws.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'docs') diff --git a/docs/design_flaws.md b/docs/design_flaws.md index 620e5b8af..f01385948 100644 --- a/docs/design_flaws.md +++ b/docs/design_flaws.md @@ -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 -- cgit v1.2.3