Skip to content

Commit

Permalink
Small changes to better match pokegold
Browse files Browse the repository at this point in the history
  • Loading branch information
mid-kid committed Aug 27, 2020
1 parent d39da49 commit 15c08ad
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 7 deletions.
2 changes: 1 addition & 1 deletion engine/gfx/sprite_anims.asm
Original file line number Diff line number Diff line change
Expand Up @@ -220,7 +220,7 @@ DoAnimFrame:
callfar ComposeMail_AnimateCursor
ret

.GameFreakLogo:
.GameFreakLogo
callfar GameFreakLogoSpriteAnim
ret

Expand Down
11 changes: 5 additions & 6 deletions engine/movie/splash.asm
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,7 @@ GameFreakPresentsScene:
dw GameFreakPresents_WaitSpriteAnim
dw GameFreakPresents_PlaceGameFreak
dw GameFreakPresents_PlacePresents
dw GameFreakPresents_DelayEnd
dw GameFreakPresents_WaitForTimer

GameFreakPresents_NextScene:
ld hl, wJumptableIndex
Expand All @@ -149,17 +149,16 @@ GameFreakPresents_PlaceGameFreak:

.PlaceGameFreak:
ld [hl], 0
ld hl, .GAME_FREAK
ld hl, .game_freak
decoord 5, 10
ld bc, .end - .GAME_FREAK
ld bc, .end - .game_freak
call CopyBytes
call GameFreakPresents_NextScene
ld de, SFX_GAME_FREAK_PRESENTS
call PlaySFX
ret

.GAME_FREAK:
; G A M E _ F R E A K
.game_freak
db 0, 1, 2, 3, 13, 4, 5, 3, 1, 6
.end
db "@"
Expand All @@ -186,7 +185,7 @@ GameFreakPresents_PlacePresents:
.end
db "@"

GameFreakPresents_DelayEnd:
GameFreakPresents_WaitForTimer:
ld hl, wIntroSceneTimer
ld a, [hl]
cp 128
Expand Down

0 comments on commit 15c08ad

Please sign in to comment.