diff options
author | luckytyphlosion <10688458+luckytyphlosion@users.noreply.github.com> | 2018-01-23 17:39:09 -0500 |
---|---|---|
committer | luckytyphlosion <10688458+luckytyphlosion@users.noreply.github.com> | 2018-01-23 17:39:09 -0500 |
commit | a1951cefc09035e11077a433b28ec8c66b3b03db (patch) | |
tree | 4de98db5a6edb6d74192028d50893da2b764421f /engine/init_gender.asm | |
parent | 79bd48f85c7dd1868264e290b12dad17a6e25b95 (diff) |
Prefix wram labels with w, part 2.
Diffstat (limited to 'engine/init_gender.asm')
-rwxr-xr-x | engine/init_gender.asm | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/engine/init_gender.asm b/engine/init_gender.asm index 76b1640d9..945e9f61f 100755 --- a/engine/init_gender.asm +++ b/engine/init_gender.asm @@ -65,11 +65,11 @@ TextJump_AreYouABoyOrAreYouAGirl: ; 0x48e0f InitGenderScreen: ; 48e14 (12:4e14) ld a, $10 - ld [MusicFade], a + ld [wMusicFade], a ld a, MUSIC_NONE - ld [MusicFadeID], a + ld [wMusicFadeID], a ld a, $0 - ld [MusicFadeID + 1], a + ld [wMusicFadeID + 1], a ld c, 8 call DelayFrames call ClearBGPalettes @@ -79,7 +79,7 @@ InitGenderScreen: ; 48e14 (12:4e14) ld bc, SCREEN_HEIGHT * SCREEN_WIDTH ld a, $0 call ByteFill - hlcoord 0, 0, AttrMap + hlcoord 0, 0, wAttrMap ld bc, SCREEN_HEIGHT * SCREEN_WIDTH xor a call ByteFill |