blob: 5cbd1f0424c2854dcda9580e96c8232256bf131e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
RTC:: ; 343
; update time and time-sensitive palettes
; rtc enabled?
ld a, [wSpriteUpdatesEnabled]
cp 0
ret z
call UpdateTime
; obj update on?
ld a, [wVramState]
bit 0, a
ret z
TimeOfDayPals:: ; 352
callfar _TimeOfDayPals
ret
UpdateTimePals:: ; 359
callfar _UpdateTimePals
ret
|