diff options
Diffstat (limited to 'home/time.asm')
-rw-r--r-- | home/time.asm | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/home/time.asm b/home/time.asm index 338168752..9ed703686 100644 --- a/home/time.asm +++ b/home/time.asm @@ -28,7 +28,7 @@ UpdateTime:: ; 5a7 call GetClock call FixDays call FixTime - callba GetTimeOfDay + farcall GetTimeOfDay ret ; 5b7 @@ -49,19 +49,16 @@ GetClock:: ; 5b7 ld [hl], RTC_S ld a, [de] maskbits 60 - and x ld [hRTCSeconds], a ld [hl], RTC_M ld a, [de] maskbits 60 - and x ld [hRTCMinutes], a ld [hl], RTC_H ld a, [de] maskbits 24 - and x ld [hRTCHours], a ld [hl], RTC_DL @@ -208,7 +205,7 @@ SetDayOfWeek:: ; 663 jr InitTime ; useless InitTime:: ; 677 - callba _InitTime + farcall _InitTime ret ; 67e |