diff --git a/Themes/Til Death/BGAnimations/ScreenGameplay overlay/WifeJudgmentSpotting.lua b/Themes/Til Death/BGAnimations/ScreenGameplay overlay/WifeJudgmentSpotting.lua index bbdbf3c4e9..371cdf5cd2 100644 --- a/Themes/Til Death/BGAnimations/ScreenGameplay overlay/WifeJudgmentSpotting.lua +++ b/Themes/Til Death/BGAnimations/ScreenGameplay overlay/WifeJudgmentSpotting.lua @@ -1081,12 +1081,12 @@ local p = Def.ActorFrame{ BeginCommand=function(self) local ttime = GetPlayableTime() settext(self,SecondsToMMSS(ttime)) - diffuse(self, ByMusicLength(ttime)) + diffuse(self, byMusicLength(ttime)) end, DoneLoadingNextSongMessageCommand=function(self) local ttime = GetPlayableTime() settext(self,SecondsToMMSS(ttime)) - diffuse(self, ByMusicLength(ttime)) + diffuse(self, byMusicLength(ttime)) end } } diff --git a/Themes/Til Death/BGAnimations/ScreenNetSelectMusic decorations/wifeonline.lua b/Themes/Til Death/BGAnimations/ScreenNetSelectMusic decorations/wifeonline.lua index c6a989d9c3..7f44b37028 100644 --- a/Themes/Til Death/BGAnimations/ScreenNetSelectMusic decorations/wifeonline.lua +++ b/Themes/Til Death/BGAnimations/ScreenNetSelectMusic decorations/wifeonline.lua @@ -657,7 +657,7 @@ t[#t+1] = LoadFont("Common Large") .. { if song then local playabletime = GetPlayableTime() self:settext(SecondsToMMSS(playabletime)) - self:diffuse(ByMusicLength(playabletime)) + self:diffuse(byMusicLength(playabletime)) else self:settext("") end diff --git a/Themes/Til Death/BGAnimations/ScreenSelectMusic decorations/wifeTwirl.lua b/Themes/Til Death/BGAnimations/ScreenSelectMusic decorations/wifeTwirl.lua index e7c7f346c4..fe52109743 100644 --- a/Themes/Til Death/BGAnimations/ScreenSelectMusic decorations/wifeTwirl.lua +++ b/Themes/Til Death/BGAnimations/ScreenSelectMusic decorations/wifeTwirl.lua @@ -391,7 +391,7 @@ t[#t+1] = LoadFont("Common Large") .. { if song then local playabletime = GetPlayableTime() self:settext(SecondsToMMSS(playabletime)) - self:diffuse(ByMusicLength(playabletime)) + self:diffuse(byMusicLength(playabletime)) else self:settext("") end diff --git a/Themes/Til Death/Scripts/01 color_config.lua b/Themes/Til Death/Scripts/01 color_config.lua index 5f8c17fa72..0f8a40058b 100644 --- a/Themes/Til Death/Scripts/01 color_config.lua +++ b/Themes/Til Death/Scripts/01 color_config.lua @@ -214,7 +214,7 @@ function byMSD(x) return HSV(0, 0.9, 0.9) end -function ByMusicLength(x) +function byMusicLength(x) if x then x = math.min(x,600) return HSV(math.max(95 - (x/900)*150, -50), 0.9, 0.9)