diff options
author | yenatch <yenatch@gmail.com> | 2015-02-10 14:16:31 -0800 |
---|---|---|
committer | yenatch <yenatch@gmail.com> | 2015-02-10 14:18:23 -0800 |
commit | 849595e53717eaf4cda658b02d8f7d4ed6f7d293 (patch) | |
tree | be2a3a1061b440061795a326d61af6f663ae8d15 /engine/title.asm | |
parent | 8e033210694533bc1233a851d6914e1f0cb90232 (diff) |
Blindly use wram labels for everything except mobile, part 2.
Diffstat (limited to 'engine/title.asm')
-rw-r--r-- | engine/title.asm | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/engine/title.asm b/engine/title.asm index 3f52d000c..309b1ea80 100644 --- a/engine/title.asm +++ b/engine/title.asm @@ -9,7 +9,7 @@ _TitleScreen: ; 10ed67 ld [hBGMapMode], a ; Reset timing variables - ld hl, $cf63 + ld hl, wcf63 ld [hli], a ; cf63 ; Scene? ld [hli], a ; cf64 ld [hli], a ; cf65 ; Timer lo @@ -144,12 +144,12 @@ _TitleScreen: ; 10ed67 ; Update palette colors ld hl, TitleScreenPalettes - ld de, $d000 + ld de, Unkn1Pals ld bc, $0080 call CopyBytes ld hl, TitleScreenPalettes - ld de, $d080 + ld de, BGPals ld bc, $0080 call CopyBytes |