Revert "Forgot another coin thingamajigger."

This reverts commit 8e96e05c24.
This commit is contained in:
Devin J. Pohly
2013-06-04 23:33:35 -04:00
parent f56ca7824c
commit cd1cd57e8c
+10 -2
View File
@@ -45,11 +45,19 @@ Branch = {
return hour > 3 and hour < 6 and "ScreenNoise" or "ScreenInit" return hour > 3 and hour < 6 and "ScreenNoise" or "ScreenInit"
end, end,
TitleMenu = function() TitleMenu = function()
-- home mode is the most assumed use of sm5. -- home mode is the most assumed use of sm-ssc.
if GAMESTATE:GetCoinMode() == "CoinMode_Home" then if GAMESTATE:GetCoinMode() == "CoinMode_Home" then
return "ScreenTitleMenu" return "ScreenTitleMenu"
end end
return "ScreenTitleJoin" -- arcade junk:
if GAMESTATE:GetCoinsNeededToJoin() > GAMESTATE:GetCoins() then
-- if no credits are inserted, don't show the Join screen. SM4 has
-- this as the initial screen, but that means we'd be stuck in a
-- loop with ScreenInit. No good.
return "ScreenTitleJoin"
else
return "ScreenTitleJoin"
end
end, end,
StartGame = function() StartGame = function()
-- Check to see if there are 0 songs installed. Also make sure to check -- Check to see if there are 0 songs installed. Also make sure to check