pokecrystal-board/home/time_palettes.asm

21 lines
333 B
NASM
Raw Normal View History

UpdateTimeSensitivePals::
; update time-sensitive palettes if overworld sprite updates are enabled
; sprite updates enabled?
2015-11-25 07:26:30 -08:00
ld a, [wSpriteUpdatesEnabled]
cp 0
ret z
; obj update on?
ld a, [wStateFlags]
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