summaryrefslogtreecommitdiff
path: root/engine/init_gender.asm
diff options
context:
space:
mode:
authoryenatch <yenatch@gmail.com>2018-02-03 17:15:20 -0500
committerGitHub <noreply@github.com>2018-02-03 17:15:20 -0500
commitb35eb72290b964b98844afbe741bb7ede34b9ef3 (patch)
tree2cf2652bc9c3e69ae5f7b2a2632c02a12498615f /engine/init_gender.asm
parent7547ad839cf1c8141b931d08ef16a894e7db68c9 (diff)
parent32ade4ac9bf113d630d904aab51f2c49c91bf8c2 (diff)
Merge pull request #480 from luckytyphlosion/master
[Ready to merge] Prefix wram labels with w.
Diffstat (limited to 'engine/init_gender.asm')
-rwxr-xr-xengine/init_gender.asm8
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