diff options
author | Rangi <35663410+Rangi42@users.noreply.github.com> | 2019-01-24 21:42:44 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-01-24 21:42:44 -0500 |
commit | 9ecc991814986fdadecd83247adf13e10eaf77ed (patch) | |
tree | c7a356e72b31deee8cc91e05d4da173796231610 /engine/gfx | |
parent | 79ea091ff627d5e3613799698b5bf1ea95f45148 (diff) | |
parent | e288ef20d539a04042c5e91cc562db04bb33b707 (diff) |
Merge pull request #593 from mid-kid/temp
More patches
Diffstat (limited to 'engine/gfx')
-rw-r--r-- | engine/gfx/pic_animation.asm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/engine/gfx/pic_animation.asm b/engine/gfx/pic_animation.asm index 6d8b52d44..88dc1f6d9 100644 --- a/engine/gfx/pic_animation.asm +++ b/engine/gfx/pic_animation.asm @@ -892,12 +892,12 @@ GetMonAnimPointer: call PokeAnim_IsEgg jr z, .egg - ld c, BANK(UnownAnimations) + ld c, BANK(UnownAnimationPointers) ; aka BANK(UnownAnimationIdlePointers) ld hl, UnownAnimationPointers ld de, UnownAnimationIdlePointers call PokeAnim_IsUnown jr z, .unown - ld c, BANK(PicAnimations) + ld c, BANK(AnimationPointers) ; aka BANK(AnimationIdlePointers) ld hl, AnimationPointers ld de, AnimationIdlePointers .unown |