summaryrefslogtreecommitdiff
path: root/home/rtc.asm
blob: ca014e46d1772069a8d1f948560b2917fb781599 (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, [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