summaryrefslogtreecommitdiff
path: root/home/rtc.asm
blob: 50686374e84365946c821452cff21ada8c022a8d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
INCLUDE "constants.asm"

SECTION "home/rtc.asm", ROM0

UpdateTimeOfDayPalettes:
	ld a, [wVramState]
	bit 0, a
	ret z
	; fallthrough

TimeOfDayPals::
	callab _TimeOfDayPals
	ret

UpdateTimePals::
	callab _UpdateTimePals
	ret