mirror of
https://github.com/pret/pokegold.git
synced 2026-05-21 19:30:43 -05:00
23 lines
289 B
NASM
23 lines
289 B
NASM
Function343:: ; 343
|
|
; update time and time-sensitive palettes
|
|
|
|
; rtc enabled?
|
|
ld a, [wRTCEnabled]
|
|
cp 0
|
|
ret z
|
|
|
|
call UpdateTime
|
|
|
|
; obj update on?
|
|
ld a, [wVramState]
|
|
bit 0, a
|
|
ret z
|
|
|
|
TimeOfDayPals:: ; 352
|
|
callab _TimeOfDayPals
|
|
ret
|
|
|
|
UpdateTimePals:: ; 359
|
|
callab _UpdateTimePals
|
|
ret
|