Skip to content

Commit

Permalink
Updating Screen Filter options to match SM 5 Simply Love specs. This …
Browse files Browse the repository at this point in the history
…update goes along with the previous commit which reverted the more granular options that I had set before.
  • Loading branch information
gabemarchan committed Jun 2, 2018
1 parent 2d21499 commit d336c66
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions Themes/itg3/Scripts/CustomMods.lua
Original file line number Diff line number Diff line change
Expand Up @@ -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
}
Expand Down

0 comments on commit d336c66

Please sign in to comment.