pokecrystal-board/home/time_palettes.asm

23 lines
302 B
NASM
Raw Normal View History

UpdateTimeAndPals::
; update time and time-sensitive palettes
; rtc enabled?
2015-11-25 07:26:30 -08:00
ld a, [wSpriteUpdatesEnabled]
cp 0
ret z
call UpdateTime
; obj update on?
2018-01-23 14:39:09 -08:00
ld a, [wVramState]
bit 0, a ; obj update
ret z
2018-06-24 07:09:41 -07:00
TimeOfDayPals::
2017-12-24 09:47:30 -08:00
callfar _TimeOfDayPals
ret
2018-06-24 07:09:41 -07:00
UpdateTimePals::
2017-12-24 09:47:30 -08:00
callfar _UpdateTimePals
ret