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/gfx/pic_animation.asm | |
parent | f773fd1dd89782eb1e92b850c7409a8d8be37651 (diff) |
Rename GetFarHalfword to GetFarWord
Fixes #796
Diffstat (limited to 'engine/gfx/pic_animation.asm')
-rw-r--r-- | engine/gfx/pic_animation.asm | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/engine/gfx/pic_animation.asm b/engine/gfx/pic_animation.asm index 36faf9b7c..62d9ad6d7 100644 --- a/engine/gfx/pic_animation.asm +++ b/engine/gfx/pic_animation.asm @@ -474,7 +474,7 @@ PokeAnim_GetPointer: add hl, de add hl, de ld a, [wPokeAnimPointerBank] - call GetFarHalfword + call GetFarWord ld a, l ld [wPokeAnimCommand], a ld a, h @@ -496,7 +496,7 @@ PokeAnim_GetBitmaskIndex: add hl, bc add hl, bc ld a, [wPokeAnimFramesBank] - call GetFarHalfword + call GetFarWord ld a, [wPokeAnimFramesBank] call GetFarByte ld [wPokeAnimCurBitmask], a @@ -915,7 +915,7 @@ GetMonAnimPointer: add hl, de ld a, c ld [wPokeAnimPointerBank], a - call GetFarHalfword + call GetFarWord ld a, l ld [wPokeAnimPointerAddr], a ld a, h @@ -982,7 +982,7 @@ GetMonFramesPointer: add hl, de add hl, de ld a, b - call GetFarHalfword + call GetFarWord ld a, l ld [wPokeAnimFramesAddr], a ld a, h @@ -1020,7 +1020,7 @@ GetMonBitmaskPointer: add hl, de add hl, de ld a, [wPokeAnimBitmaskBank] - call GetFarHalfword + call GetFarWord ld a, l ld [wPokeAnimBitmaskAddr], a ld a, h |