diff options
Diffstat (limited to 'engine/gfx')
-rw-r--r-- | engine/gfx/pic_animation.asm | 4 | ||||
-rw-r--r-- | engine/gfx/player_gfx.asm | 6 |
2 files changed, 5 insertions, 5 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 diff --git a/engine/gfx/player_gfx.asm b/engine/gfx/player_gfx.asm index cd1aca9d3..bd0fd0ce7 100644 --- a/engine/gfx/player_gfx.asm +++ b/engine/gfx/player_gfx.asm @@ -111,7 +111,7 @@ GetCardPic: .GotClass: ld de, vTiles2 tile $00 ld bc, $23 tiles - ld a, BANK(ChrisCardPic) ; BANK(KrisCardPic) + ld a, BANK(ChrisCardPic) ; aka BANK(KrisCardPic) call FarCopyBytes ld hl, CardGFX ld de, vTiles2 tile $23 @@ -165,7 +165,7 @@ HOF_LoadTrainerFrontpic: .GotPic: ld hl, vTiles2 - ld b, BANK(ChrisPic) ; BANK(KrisPic) + ld b, BANK(ChrisPic) ; aka BANK(KrisPic) ld c, 7 * 7 call Get2bpp call WaitBGMap @@ -194,7 +194,7 @@ DrawIntroPlayerPic: ld de, KrisPic .GotPic: ld hl, vTiles2 - ld b, BANK(ChrisPic) ; BANK(KrisPic) + ld b, BANK(ChrisPic) ; aka BANK(KrisPic) ld c, 7 * 7 ; dimensions call Get2bpp |