You've already forked pokecrystal-board
mirror of
https://gitlab.com/xCrystal/pokecrystal-board.git
synced 2025-04-09 05:44:44 -07:00
Fix some constants
Glass ting SFX were added in crystal. PicAnimations and UnownAnimations are expected to be in the same bank as their pointers, because the pointers are not BANK()-referenced separately.
This commit is contained in:
@@ -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
|
||||
|
Reference in New Issue
Block a user