pokecrystal-board/home/time_palettes.asm

21 lines
332 B
NASM
Raw 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?
2018-01-23 17:39:09 -05:00
ld a, [wVramState]
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