blob: 61792782ed3f1de77500cfaf9e4c8e9312671e62 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
include "constants.asm"
if DEBUG
SECTION "Time Of Day Palettes", ROM0 [$032B]
else
SECTION "Time Of Day Palettes", ROM0 [$02EF]
endc
UpdateTimeOfDayPalettes: ; 32b (0:032b)
ld a, [wVramState]
bit 0, a
ret z
TimeOfDayPals::
callab _TimeOfDayPals ; Func_8c2e3
ret
UpdateTimePals:: ; 33a
callab _UpdateTimePals ; Func_8c335
ret
|