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