diff options
author | entrpntr <entrpntr@gmail.com> | 2020-04-26 19:00:07 -0400 |
---|---|---|
committer | entrpntr <entrpntr@gmail.com> | 2020-04-26 19:11:18 -0400 |
commit | 0b33dabae2d43591a964774154f8bec5bf7194b1 (patch) | |
tree | b51d8de7de034c38081a679abf8c9a14efd8bfaa /engine/overworld/time.asm | |
parent | 9ce922493398842b2e91383a08098f20249d44c7 (diff) |
Disassemble map scenes and events.
Diffstat (limited to 'engine/overworld/time.asm')
-rwxr-xr-x | engine/overworld/time.asm | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/engine/overworld/time.asm b/engine/overworld/time.asm index 2ca7e101..5798ee20 100755 --- a/engine/overworld/time.asm +++ b/engine/overworld/time.asm @@ -9,10 +9,10 @@ ClearDailyTimers: ld [wDailyResetTimer], a ret -InitCallReceiveDelay: +InitCallReceiveDelay:: xor a ld [wTimeCyclesSinceLastCall], a -Function11804: ; 11804 (4:5804) +Function11804: ld a, [wTimeCyclesSinceLastCall] cp $3 jr c, .asm_1180d @@ -82,7 +82,7 @@ asm_11867: ld hl, wDailyResetTimer jp Function1182e -CheckDailyResetTimer: +CheckDailyResetTimer:: ld hl, wDailyResetTimer call Function1183b ret nc @@ -102,7 +102,7 @@ StartBugContestTimer: call CopyDayHourMinSecToHL ret -CheckBugContestTimer: +CheckBugContestTimer:: ld hl, wBugContestStartTime call CalcSecsMinsHoursDaysSince ld a, [wDaysSince] @@ -141,7 +141,7 @@ Function118c9: ; 118c9 (4:58c9) call CopyDayToHL ret -CheckPokerusTick: +CheckPokerusTick:: ld hl, wTimerEventStartDay call CalcDaysSince call Function119b4 |