diff options
author | xCrystal <rgr.crystal@gmail.com> | 2018-01-01 15:08:21 +0100 |
---|---|---|
committer | xCrystal <rgr.crystal@gmail.com> | 2018-01-01 20:09:53 +0100 |
commit | 37369d1ae0890c63b494937ed6234e68f46359c5 (patch) | |
tree | fbf4952ed70906c1a4b10fb8b9e5c490bc680cc8 /engine/title.asm | |
parent | 6e12a515031027ab0412ef37a3f6e3b24adfc736 (diff) |
Rename Pals labels in WRAM bank 5
Diffstat (limited to 'engine/title.asm')
-rw-r--r-- | engine/title.asm | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/engine/title.asm b/engine/title.asm index 4a6dc6fa9..2380cfedf 100644 --- a/engine/title.asm +++ b/engine/title.asm @@ -144,12 +144,12 @@ _TitleScreen: ; 10ed67 ; Update palette colors ld hl, TitleScreenPalettes - ld de, UnknBGPals + ld de, wBGPals1 ld bc, 16 palettes call CopyBytes ld hl, TitleScreenPalettes - ld de, BGPals + ld de, wBGPals2 ld bc, 16 palettes call CopyBytes @@ -220,7 +220,7 @@ _TitleScreen: ; 10ed67 ld [hBGMapMode], a xor a - ld [UnknBGPals + 2], a + ld [wBGPals1 + 2], a ; Play starting sound effect call SFXChannelsOff @@ -231,7 +231,7 @@ _TitleScreen: ; 10ed67 ; 10eea7 SuicuneFrameIterator: ; 10eea7 - ld hl, UnknBGPals + 2 + ld hl, wBGPals1 + 2 ld a, [hl] ld c, a inc [hl] |