pokecrystal/home/time_palettes.asm

23 lines
331 B
NASM
Raw Normal View History

UpdateTimeAndPals::
; update time and time-sensitive palettes
; rtc enabled?
2015-11-25 15:26:30 +00:00
ld a, [wSpriteUpdatesEnabled]
cp FALSE
ret z
call UpdateTime
; obj update on?
ld a, [wStateFlags]
bit SPRITE_UPDATES_DISABLED_F, a ; obj update
ret z
2018-06-24 14:09:41 +00:00
TimeOfDayPals::
2017-12-24 17:47:30 +00:00
callfar _TimeOfDayPals
ret
2018-06-24 14:09:41 +00:00
UpdateTimePals::
2017-12-24 17:47:30 +00:00
callfar _UpdateTimePals
ret