summaryrefslogtreecommitdiff
path: root/engine/rtc.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/rtc.asm
parent79bd48f85c7dd1868264e290b12dad17a6e25b95 (diff)
Prefix wram labels with w, part 2.
Diffstat (limited to 'engine/rtc.asm')
-rwxr-xr-xengine/rtc.asm16
1 files changed, 8 insertions, 8 deletions
diff --git a/engine/rtc.asm b/engine/rtc.asm
index 571de9284..37e24c1ed 100755
--- a/engine/rtc.asm
+++ b/engine/rtc.asm
@@ -44,7 +44,7 @@ GetTimeOfDay:: ; 14032
; get time of day
inc hl
ld a, [hl]
- ld [TimeOfDay], a
+ ld [wTimeOfDay], a
ret
; 14044
@@ -68,7 +68,7 @@ Unreferenced_1404e:
StageRTCTimeForSave: ; 14056
call UpdateTime
ld hl, wRTC
- ld a, [CurDay]
+ ld a, [wCurDay]
ld [hli], a
ld a, [hHours]
ld [hli], a
@@ -138,7 +138,7 @@ Function140ae: ; 140ae
call UpdateTime
ld a, [wRTC + 0]
ld b, a
- ld a, [CurDay]
+ ld a, [wCurDay]
cp b
jr c, .dont_update
@@ -166,9 +166,9 @@ _InitTime:: ; 140ed
call GetClock
call FixDays
ld hl, hRTCSeconds
- ld de, StartSecond
+ ld de, wStartSecond
- ld a, [StringBuffer2 + 3]
+ ld a, [wStringBuffer2 + 3]
sub [hl]
dec hl
jr nc, .okay_secs
@@ -177,7 +177,7 @@ _InitTime:: ; 140ed
ld [de], a
dec de
- ld a, [StringBuffer2 + 2]
+ ld a, [wStringBuffer2 + 2]
sbc [hl]
dec hl
jr nc, .okay_mins
@@ -186,7 +186,7 @@ _InitTime:: ; 140ed
ld [de], a
dec de
- ld a, [StringBuffer2 + 1]
+ ld a, [wStringBuffer2 + 1]
sbc [hl]
dec hl
jr nc, .okay_hrs
@@ -195,7 +195,7 @@ _InitTime:: ; 140ed
ld [de], a
dec de
- ld a, [StringBuffer2]
+ ld a, [wStringBuffer2]
sbc [hl]
dec hl
jr nc, .okay_days