add Screen Filter to ScreenPlayerOptions

This commit is contained in:
AJ Kelly
2011-09-03 19:55:58 -05:00
parent afe7569f08
commit ffa6bbf2e0
4 changed files with 62 additions and 12 deletions
@@ -235,8 +235,8 @@ end
function GetDefaultOptionLines()
local LineSets = {
"1,8,14,2,3,4,5,6,R,7,9,10,11,12,13,15,16,17,18", -- All
"1,8,14,2,7,13,16,17,18", -- DDR Essentials ( no turns, fx )
"1,8,14,2,3,4,5,6,R,7,9,10,11,12,13,15,16,SF,17,18", -- All
"1,8,14,2,7,13,16,SF,17,18", -- DDR Essentials ( no turns, fx )
};
local function IsExtra()
if GAMESTATE:IsExtraStage() or GAMESTATE:IsExtraStage2() then
@@ -252,7 +252,7 @@ function GetDefaultOptionLines()
return LineSets[2]; -- Just make sure!
end
else
return "1,8,14,2,7,13,16,17,18" -- "failsafe" list
return "1,8,14,2,7,13,16,SF,17,18" -- "failsafe" list
end
end;
function UserPrefLongFail()