diff options
author | yenatch <yenatch@gmail.com> | 2017-12-12 19:13:53 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-12-12 19:13:53 -0500 |
commit | 6cf7c0790f3424a4cb472b274a88d04d449d5231 (patch) | |
tree | 7d3c49aaaa6d50f6ea698e95e7204e6d0b76bcca /engine/sprite_anims.asm | |
parent | f6942b9a136b2ee3b25159ebc4d54509a42c5266 (diff) | |
parent | f0ab09125493f91d66af836e0abb977459a0d801 (diff) |
Merge pull request #414 from roukaour/master
Improve sprite constants and documentation
Diffstat (limited to 'engine/sprite_anims.asm')
-rwxr-xr-x | engine/sprite_anims.asm | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/engine/sprite_anims.asm b/engine/sprite_anims.asm index e6681c8ac..32c91b07f 100755 --- a/engine/sprite_anims.asm +++ b/engine/sprite_anims.asm @@ -18,8 +18,8 @@ DoAnimFrame: ; 8d24b dw .PartyMon dw .PartyMonSwitch dw .PartyMonSelected - dw .sprite_anim_seq_04 - dw .namingscreencursor + dw .GSTitleTrail + dw .NamingScreenCursor dw .GameFreakLogo dw .GSIntroStar dw .GSIntroSparkle @@ -27,9 +27,9 @@ DoAnimFrame: ; 8d24b dw .SlotsChansey dw .SlotsChanseyEgg dw .MailCursor - dw .sprite_anim_seq_0D - dw .sprite_anim_seq_0E - dw .sprite_anim_seq_0F + dw .ForUnusedCursor + dw .DummyGameCursor + dw .PokegearArrow dw .TradePokeBall dw .TradeTubeBulge dw .TrademonInTube @@ -132,7 +132,7 @@ DoAnimFrame: ; 8d24b ld [hl], 8 * 3 ret -.sprite_anim_seq_04 ; 8d302 (23:5302) +.GSTitleTrail ; 8d302 (23:5302) call .AnonymousJumptable jp hl ; 8d306 (23:5306) @@ -217,7 +217,7 @@ DoAnimFrame: ; 8d24b ld [hl], a ret -.namingscreencursor ; 8d36c (23:536c) +.NamingScreenCursor ; 8d36c (23:536c) callab NamingScreen_AnimateCursor ret @@ -404,15 +404,15 @@ DoAnimFrame: ; 8d24b ld [hl], a ret -.sprite_anim_seq_0D ; 8d46e (23:546e) +.ForUnusedCursor ; 8d46e (23:546e) callab ret_e00ed ret -.sprite_anim_seq_0F ; 8d475 (23:5475) +.PokegearArrow ; 8d475 (23:5475) callab AnimatePokegearModeIndicatorArrow ret -.sprite_anim_seq_0E ; 8d47c (23:547c) +.DummyGameCursor ; 8d47c (23:547c) callab DummyGame_InterpretJoypad_AnimateCursor ret |