summaryrefslogtreecommitdiff
path: root/engine/printer.asm
diff options
context:
space:
mode:
authorluckytyphlosion <10688458+luckytyphlosion@users.noreply.github.com>2018-01-23 17:39:09 -0500
committerluckytyphlosion <10688458+luckytyphlosion@users.noreply.github.com>2018-01-23 17:39:09 -0500
commita1951cefc09035e11077a433b28ec8c66b3b03db (patch)
tree4de98db5a6edb6d74192028d50893da2b764421f /engine/printer.asm
parent79bd48f85c7dd1868264e290b12dad17a6e25b95 (diff)
Prefix wram labels with w, part 2.
Diffstat (limited to 'engine/printer.asm')
-rwxr-xr-xengine/printer.asm10
1 files changed, 5 insertions, 5 deletions
diff --git a/engine/printer.asm b/engine/printer.asm
index 4479d5d0b..b9e55ef2a 100755
--- a/engine/printer.asm
+++ b/engine/printer.asm
@@ -751,7 +751,7 @@ Printer_PrintBoxListSegment: ; 848e7 (21:48e7)
cp $ff
jp z, .finish
ld [wd265], a
- ld [CurPartySpecies], a
+ ld [wCurPartySpecies], a
push bc
push hl
@@ -769,7 +769,7 @@ Printer_PrintBoxListSegment: ; 848e7 (21:48e7)
push hl
call PlaceString
- ld a, [CurPartySpecies]
+ ld a, [wCurPartySpecies]
cp EGG
pop hl
jr z, .ok2
@@ -850,16 +850,16 @@ Printer_GetMonGender: ; 8498a (21:498a)
ld bc, BOXMON_STRUCT_LENGTH
ld a, [wWhichBoxMonToPrint]
call AddNTimes
- ld de, TempMonDVs
+ ld de, wTempMonDVs
ld a, [hli]
ld [de], a
inc de
ld a, [hli]
ld [de], a
ld a, [wWhichBoxMonToPrint]
- ld [CurPartyMon], a
+ ld [wCurPartyMon], a
ld a, TEMPMON
- ld [MonType], a
+ ld [wMonType], a
farcall GetGender
ld a, " "
jr c, .got_gender