aboutsummaryrefslogtreecommitdiffstats
path: root/engine/movie
diff options
context:
space:
mode:
authorRangi <35663410+Rangi42@users.noreply.github.com>2020-11-05 23:50:02 -0500
committerGitHub <noreply@github.com>2020-11-05 23:50:02 -0500
commit5db3bdd6551fad07066b669db1e44a6151aaa0b4 (patch)
treeab357b894c9457b3d1d38fd49300df34412168f8 /engine/movie
parentMerge pull request #59 from Rangi42/master (diff)
parentSync more with pokered (diff)
downloadpokeyellow-5db3bdd6551fad07066b669db1e44a6151aaa0b4.tar.gz
pokeyellow-5db3bdd6551fad07066b669db1e44a6151aaa0b4.tar.xz
pokeyellow-5db3bdd6551fad07066b669db1e44a6151aaa0b4.zip
Merge pull request #60 from Rangi42/master
Organize home and macro code
Diffstat (limited to 'engine/movie')
-rwxr-xr-xengine/movie/intro.asm2
-rwxr-xr-xengine/movie/title.asm10
2 files changed, 6 insertions, 6 deletions
diff --git a/engine/movie/intro.asm b/engine/movie/intro.asm
index 9165113f..a9774ff9 100755
--- a/engine/movie/intro.asm
+++ b/engine/movie/intro.asm
@@ -83,7 +83,7 @@ PlayShootingStar:
ld b, SET_PAL_GAME_FREAK_INTRO
call RunPaletteCommand
farcall LoadCopyrightAndTextBoxTiles
- ldPal a, BLACK, DARK_GRAY, LIGHT_GRAY, WHITE
+ ldpal a, SHADE_BLACK, SHADE_DARK, SHADE_LIGHT, SHADE_WHITE
ldh [rBGP], a
call UpdateGBCPal_BGP
ld c, 180
diff --git a/engine/movie/title.asm b/engine/movie/title.asm
index 0b421d89..11852ae4 100755
--- a/engine/movie/title.asm
+++ b/engine/movie/title.asm
@@ -254,7 +254,7 @@ CopyrightTextString:
TitleScreen_PlayPikachuPCM:
callfar PlayPikachuSoundClip
ret
-
+
DoTitleScreenFunction:
call .CheckTimer
ld a, [wTitleScreenScene]
@@ -268,7 +268,7 @@ DoTitleScreenFunction:
ld l, a
jp hl
-
+
.Jumptable:
dw .Nop
dw .BlinkHalf
@@ -282,13 +282,13 @@ DoTitleScreenFunction:
dw .BlinkWait
dw .BlinkOpen
dw .GoBackToStart
-
+
.GoBackToStart:
xor a
ld [wTitleScreenScene], a
.Nop
ret
-
+
.BlinkOpen:
ld e, 0
jr .LoadBlinkFrame
@@ -316,7 +316,7 @@ DoTitleScreenFunction:
ld hl, wTitleScreenScene
inc [hl]
ret
-
+
.CheckTimer:
ld hl, wTitleScreenTimer
ld a, [hl]