diff options
author | Remy Oukaour <remy.oukaour@gmail.com> | 2018-01-11 15:36:11 -0500 |
---|---|---|
committer | Remy Oukaour <remy.oukaour@gmail.com> | 2018-01-11 15:36:11 -0500 |
commit | 17f34cb29c1aeb1bb623e587e3e4cf1f1fc295fb (patch) | |
tree | c33ec8a7397464a3163096c446740541f4169b97 /engine/namingscreen.asm | |
parent | fd0a78d708f6e4e9f6489f951f07e3e9478d773d (diff) |
Disambiguate some uses of wcf64/5/6
Diffstat (limited to 'engine/namingscreen.asm')
-rwxr-xr-x | engine/namingscreen.asm | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/engine/namingscreen.asm b/engine/namingscreen.asm index e0de37c5f..c2d7b9c1a 100755 --- a/engine/namingscreen.asm +++ b/engine/namingscreen.asm @@ -490,7 +490,7 @@ NamingScreenJoypadLoop: ; 11915 ret .select - ld hl, wcf64 + ld hl, wNamingScreenLetterCase ld a, [hl] xor 1 ld [hl], a @@ -922,7 +922,7 @@ LoadNamingScreenGFX: ; 11c51 ld [hSCX], a ld [wGlobalAnimXOffset], a ld [wJumptableIndex], a - ld [wcf64], a + ld [wNamingScreenLetterCase], a ld [hBGMapMode], a ld [wNamingScreenCurrNameLength], a ld a, $7 @@ -1218,9 +1218,9 @@ INCBIN "gfx/icons/mail2.2bpp" ret .select - ld hl, wcf64 + ld hl, wNamingScreenLetterCase ld a, [hl] - xor $1 + xor 1 ld [hl], a jr nz, .switch_to_lowercase ld de, MailEntry_Uppercase |