aboutsummaryrefslogtreecommitdiffstats
path: root/engine/movie/credits.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/credits.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/credits.asm')
-rw-r--r--engine/movie/credits.asm8
1 files changed, 4 insertions, 4 deletions
diff --git a/engine/movie/credits.asm b/engine/movie/credits.asm
index 7a24b0b8..22006e6a 100644
--- a/engine/movie/credits.asm
+++ b/engine/movie/credits.asm
@@ -21,7 +21,7 @@ HallOfFamePC:
call FillFourRowsWithBlack
ld a, %11000000
ldh [rBGP], a
- call UpdateGBCPal_BGP
+ call UpdateCGBPal_BGP
call EnableLCD
call StopAllMusic
ld hl, vBGMap1
@@ -46,7 +46,7 @@ FadeInCreditsText:
.loop
ld a, [hli]
ldh [rBGP], a
- call UpdateGBCPal_BGP
+ call UpdateCGBPal_BGP
ld c, 5
call DelayFrames
dec b
@@ -78,7 +78,7 @@ DisplayCreditsMon:
call CreditsCopyTileMapToVRAM
ld a, %11111100 ; make the mon a black silhouette
ldh [rBGP], a
- call UpdateGBCPal_BGP
+ call UpdateCGBPal_BGP
ld hl, rLCDC
res rLCDC_BG_TILEMAP, [hl]
ld a, 1
@@ -94,7 +94,7 @@ DisplayCreditsMon:
call ScrollCreditsMonLeft
ld a, %11000000
ldh [rBGP], a
- call UpdateGBCPal_BGP
+ call UpdateCGBPal_BGP
xor a
ldh [hSCX], a
ret