From d336c664e97e93f05949cc6fdc77036e0bfe398d Mon Sep 17 00:00:00 2001 From: Gabe Marchan Date: Sat, 2 Jun 2018 12:48:36 -0500 Subject: [PATCH] Updating Screen Filter options to match SM 5 Simply Love specs. This update goes along with the previous commit which reverted the more granular options that I had set before. --- Themes/itg3/Scripts/CustomMods.lua | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Themes/itg3/Scripts/CustomMods.lua b/Themes/itg3/Scripts/CustomMods.lua index bf189a1..6d4bc09 100644 --- a/Themes/itg3/Scripts/CustomMods.lua +++ b/Themes/itg3/Scripts/CustomMods.lua @@ -229,15 +229,15 @@ function OptionScreenFilter() --if GAMESTATE:StageIndex() == 0 then ResetCustomMods() end -- Reset if we're on the first stage if CustomMods[pn].dark == 0 then list[1] = true elseif CustomMods[pn].dark == 0.5 then list[2] = true - elseif CustomMods[pn].dark == 0.65 then list[3] = true - elseif CustomMods[pn].dark == 0.85 then list[4] = true + elseif CustomMods[pn].dark == 0.75 then list[3] = true + elseif CustomMods[pn].dark == 0.95 then list[4] = true else list[1] = true end end, SaveSelections = function(self, list, pn) if list [1] then CustomMods[pn].dark = 0 elseif list [2] then CustomMods[pn].dark = 0.5 - elseif list [3] then CustomMods[pn].dark = 0.65 - elseif list [4] then CustomMods[pn].dark = 0.85 + elseif list [3] then CustomMods[pn].dark = 0.75 + elseif list [4] then CustomMods[pn].dark = 0.95 else CustomMods[pn].dark = 0 end end }