diff options
author | xCrystal <rgr.crystal@gmail.com> | 2018-01-02 17:13:57 +0100 |
---|---|---|
committer | xCrystal <rgr.crystal@gmail.com> | 2018-01-02 17:13:57 +0100 |
commit | f1ea15bbfe8528143ace793b050891a9b1f99d03 (patch) | |
tree | 0a4644b24aaf3a09dee22e2f338ec324cb5b940c /engine/timeofdaypals.asm | |
parent | 7c0e903c4821b3e7ded9b795661ed3608e023cc2 (diff) |
Consolidate Special function names
Diffstat (limited to 'engine/timeofdaypals.asm')
-rw-r--r-- | engine/timeofdaypals.asm | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/engine/timeofdaypals.asm b/engine/timeofdaypals.asm index 393a9e84a..31a55a7d8 100644 --- a/engine/timeofdaypals.asm +++ b/engine/timeofdaypals.asm @@ -98,7 +98,7 @@ _TimeOfDayPals:: ; 8c011 ld [rSVBK], a ; update palettes - call _UpdateTimePals + call _Special_UpdateTimePals call DelayFrame ; successful change @@ -112,14 +112,14 @@ _TimeOfDayPals:: ; 8c011 ; 8c070 -_UpdateTimePals:: ; 8c070 +_Special_UpdateTimePals:: ; 8c070 ld c, $9 ; normal call GetTimePalFade call DmgToCgbTimePals ret ; 8c079 -FadeInPalettes:: ; 8c079 +Special_FadeInPalettes:: ; 8c079 ld c, $12 call GetTimePalFade ld b, $4 @@ -127,7 +127,7 @@ FadeInPalettes:: ; 8c079 ret ; 8c084 -FadeOutPalettes:: ; 8c084 +Special_FadeOutPalettes:: ; 8c084 call FillWhiteBGColor ld c, $9 call GetTimePalFade |