diff options
Diffstat (limited to 'home/rtc.asm')
-rw-r--r-- | home/rtc.asm | 12 |
1 files changed, 7 insertions, 5 deletions
diff --git a/home/rtc.asm b/home/rtc.asm index dd38876..bc81e80 100644 --- a/home/rtc.asm +++ b/home/rtc.asm @@ -2,14 +2,16 @@ include "constants.asm" SECTION "home/rtc.asm", ROM0 -UpdateTimeOfDayPalettes: ; 32b (0:032b) +UpdateTimeOfDayPalettes: ld a, [wVramState] bit 0, a ret z + ; fallthrough + TimeOfDayPals:: - callab _TimeOfDayPals ; Func_8c2e3 + callab _TimeOfDayPals ret -UpdateTimePals:: ; 33a - callab _UpdateTimePals ; Func_8c335 - ret
\ No newline at end of file +UpdateTimePals:: + callab _UpdateTimePals + ret |