diff options
author | mid-kid <esteve.varela@gmail.com> | 2020-08-27 15:10:12 +0200 |
---|---|---|
committer | mid-kid <esteve.varela@gmail.com> | 2020-08-27 15:13:41 +0200 |
commit | 353f78f493d687051140e5935db012c0f4f4a7d8 (patch) | |
tree | 4c2dc68dbee8f2374a38c37b9eeda7135730d5bc /engine/gfx/sprite_anims.asm | |
parent | 15c08ad8a3d520001850cd323dac7c29643f24bc (diff) |
GS_INTRO_STAR/SPARKLE -> GS_GAMEFREAK_LOGO_STAR/SPARKLE
These two sprite animations are related to the Game Freak Logo splash
screen, not the actual intro.
Diffstat (limited to 'engine/gfx/sprite_anims.asm')
-rw-r--r-- | engine/gfx/sprite_anims.asm | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/engine/gfx/sprite_anims.asm b/engine/gfx/sprite_anims.asm index 1bda709e0..64a84100d 100644 --- a/engine/gfx/sprite_anims.asm +++ b/engine/gfx/sprite_anims.asm @@ -20,8 +20,8 @@ DoAnimFrame: dw .GSTitleTrail dw .NamingScreenCursor dw .GameFreakLogo - dw .GSIntroStar - dw .GSIntroSparkle + dw .GSGameFreakLogoStar + dw .GSGameFreakLogoSparkle dw .SlotsGolem dw .SlotsChansey dw .SlotsChanseyEgg @@ -224,7 +224,7 @@ DoAnimFrame: callfar GameFreakLogoSpriteAnim ret -.GSIntroStar +.GSGameFreakLogoStar ld hl, SPRITEANIMSTRUCT_VAR1 add hl, bc ld a, [hl] @@ -274,7 +274,7 @@ DoAnimFrame: call DeinitializeSprite ret -.GSIntroSparkle +.GSGameFreakLogoSparkle ld hl, SPRITEANIMSTRUCT_VAR1 add hl, bc ld a, [hli] |