diff options
author | Rangi <remy.oukaour+rangi@gmail.com> | 2020-08-09 15:16:31 -0400 |
---|---|---|
committer | Rangi <remy.oukaour+rangi@gmail.com> | 2020-08-09 15:16:31 -0400 |
commit | 9c229cde440bc6f68343331ad7bc6e1a52a742f0 (patch) | |
tree | 3bc08aaca7e09ae9933a11dbdcdc545b90d5b343 /home/rtc.asm | |
parent | a75c6619fb933dc2d4c94b24394fb6fa9335b3b1 (diff) |
Clean up some code in home/
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 |