pokecrystal/home/rtc.asm

25 lines
333 B
NASM
Raw Normal View History

RTC:: ; 46f
; update time and time-sensitive palettes
; rtc enabled?
2015-11-25 15:26:30 +00:00
ld a, [wSpriteUpdatesEnabled]
cp 0
ret z
call UpdateTime
; obj update on?
ld a, [VramState]
bit 0, a ; obj update
ret z
TimeOfDayPals:: ; 47e
2017-12-24 17:47:30 +00:00
callfar _TimeOfDayPals
ret
; 485
2018-01-02 16:13:57 +00:00
Special_UpdateTimePals:: ; 485
callfar _Special_UpdateTimePals
ret
; 48c