Files
pokecrystal-board/home/time_palettes.asm

21 lines
333 B
NASM
Raw Permalink Normal View History

UpdateTimeSensitivePals::
; update time-sensitive palettes if overworld sprite updates are enabled
; sprite updates enabled?
2015-11-25 10:26:30 -05:00
ld a, [wSpriteUpdatesEnabled]
cp 0
ret z
; obj update on?
ld a, [wStateFlags]
bit 0, a ; obj update
ret z
2018-06-24 16:09:41 +02:00
TimeOfDayPals::
2017-12-24 12:47:30 -05:00
callfar _TimeOfDayPals
ret
2018-06-24 16:09:41 +02:00
UpdateTimePals::
2017-12-24 12:47:30 -05:00
callfar _UpdateTimePals
ret