diff options
author | pikalaxalt <PikalaxALT@gmail.com> | 2016-05-10 12:31:49 -0400 |
---|---|---|
committer | pikalaxalt <PikalaxALT@gmail.com> | 2016-05-10 12:31:49 -0400 |
commit | ae36ef2c7fb722b7480d73c7a95a5d1e2ece7831 (patch) | |
tree | c6cfbfa143807b10f3baf86eeed3ff6275237c72 /engine/time.asm | |
parent | e95d42e0af1921f516c1fd4269024aa3f586514f (diff) |
Labeled every function in ROM0 that's referenced in the source
Diffstat (limited to 'engine/time.asm')
-rwxr-xr-x | engine/time.asm | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/engine/time.asm b/engine/time.asm index 8ea807972..2112ec35c 100755 --- a/engine/time.asm +++ b/engine/time.asm @@ -102,9 +102,9 @@ CheckDailyResetTimer:: ; 11452 ret nc xor a ld hl, DailyFlags -rept 3 ld [hli], a -endr + ld [hli], a + ld [hli], a ld [hl], a ld hl, wDailyRematchFlags rept 4 @@ -381,9 +381,9 @@ CalcMinsHoursDaysSince: ; 115d6 ; 115db CalcSecsMinsHoursDaysSince: ; 115db -rept 3 inc hl -endr + inc hl + inc hl ld a, [hSeconds] ld c, a sub [hl] |