summaryrefslogtreecommitdiff
path: root/engine/movie
diff options
context:
space:
mode:
authorRangi <remy.oukaour+rangi42@gmail.com>2020-10-28 10:21:10 -0400
committerRangi <remy.oukaour+rangi42@gmail.com>2020-10-28 10:21:10 -0400
commit6d333bed5fde0c2da0a6a9df2ccae83933400e42 (patch)
tree0485e425e27cdb5d373bbd7fad10af5dfc00fbd5 /engine/movie
parent446f1846b1c614ab1538d1ce11aa2781c22717f2 (diff)
Replace many '; unused' with '; unreferenced'
Diffstat (limited to 'engine/movie')
-rw-r--r--engine/movie/intro.asm11
1 files changed, 6 insertions, 5 deletions
diff --git a/engine/movie/intro.asm b/engine/movie/intro.asm
index 1da3576e3..623b92ed4 100644
--- a/engine/movie/intro.asm
+++ b/engine/movie/intro.asm
@@ -21,7 +21,7 @@ CrystalIntro:
call DelayFrame
jp .loop
-.ShutOffMusic:
+.ShutOffMusic
ld de, MUSIC_NONE
call PlayMusic
@@ -152,14 +152,14 @@ IntroScene2:
cp $80
jr nc, .endscene
cp $60
- jr nz, .DontPlaySound
+ jr nz, .nosound
push af
depixel 11, 11
call CrystalIntro_InitUnownAnim
ld de, SFX_INTRO_UNOWN_1
call PlaySFX
pop af
-.DontPlaySound:
+.nosound
ld [wIntroSceneTimer], a
xor a
call CrystalIntro_UnownFade
@@ -971,7 +971,8 @@ IntroScene20:
xor a
call Intro_Scene20_AppearUnown
ret
-; unused
+
+.AppearUnownPal2: ; unreferenced
ld a, c
and $1c
srl a
@@ -981,7 +982,7 @@ IntroScene20:
call Intro_Scene20_AppearUnown
ret
-.finished
+.finished:
call NextIntroScene
ret