aboutsummaryrefslogtreecommitdiffstats
path: root/engine/movie/intro.asm
diff options
context:
space:
mode:
authordannye <33dannye@gmail.com>2025-01-30 21:40:19 -0600
committerdannye <33dannye@gmail.com>2025-01-30 21:40:19 -0600
commit6cb885a9f68b9f445d7fa45279731336fe0247d4 (patch)
tree39736ab1dd8ebcc57f8e981db6103285743d5530 /engine/movie/intro.asm
parentIdentify unnamed functions in map_sprites.asm (#126) (diff)
parentFix some label typos, and add some constants instead of raw numbers (#492) (diff)
downloadpokeyellow-6cb885a9f68b9f445d7fa45279731336fe0247d4.tar.gz
pokeyellow-6cb885a9f68b9f445d7fa45279731336fe0247d4.tar.xz
pokeyellow-6cb885a9f68b9f445d7fa45279731336fe0247d4.zip
Merge branch 'master' of https://github.com/pret/pokered
Diffstat (limited to 'engine/movie/intro.asm')
-rw-r--r--engine/movie/intro.asm9
1 files changed, 7 insertions, 2 deletions
diff --git a/engine/movie/intro.asm b/engine/movie/intro.asm
index ef2374da..33a3a134 100644
--- a/engine/movie/intro.asm
+++ b/engine/movie/intro.asm
@@ -85,7 +85,7 @@ PlayShootingStar:
farcall LoadCopyrightAndTextBoxTiles
ldpal a, SHADE_BLACK, SHADE_DARK, SHADE_LIGHT, SHADE_WHITE
ldh [rBGP], a
- call UpdateGBCPal_BGP
+ call UpdateCGBPal_BGP
ld c, 180
call DelayFrames
call ClearScreen
@@ -122,6 +122,7 @@ PlayShootingStar:
call DelayFrames
farcall AnimateShootingStar
push af
+ ; A `call LoadPresentsGraphic` here was removed in localization
pop af
jr c, .next ; skip the delay if the user interrupted the animation
ld c, 40
@@ -147,7 +148,11 @@ IntroDrawBlackBars:
ld c, BG_MAP_WIDTH * 4
jp IntroPlaceBlackTiles
-EmptyFunc2:
+LoadPresentsGraphic: ; unreferenced
+ ; This routine loaded the "PRESENTS" text graphic (tiles
+ ; $67, $68, $69, $6A, $6B, and $6C from gamefreak_presents.2bpp)
+ ; at coordinates (11, 7) in the Japanese versions.
+ ; It was dummied out in the English localization.
ret
GameFreakIntro: