use boolean type, don't return string

This commit is contained in:
Chris Danford
2005-04-23 02:33:48 +00:00
parent c500dd25c5
commit 9fbfabea76
2 changed files with 3 additions and 3 deletions
@@ -99,8 +99,8 @@ function GetGameplayNextScreen()
end
function OptionsMenuAvailable()
if GAMESTATE:IsExtraStage() or GAMESTATE:IsExtraStage2() then return "0" end
return "1"
if GAMESTATE:IsExtraStage() or GAMESTATE:IsExtraStage2() then return false end
return true
end
-- (c) 2005 Glenn Maynard, Chris Danford
+1 -1
View File
@@ -675,7 +675,7 @@ NextOptionsScreen=@SelectFirstOptionsScreen()
DoRouletteOnMenuTimer=1
AlignMusicBeat=0
Codes=
OptionsMenuAvailable=@OptionsMenuAvailable()
OptionsMenuAvailable=OptionsMenuAvailable()
[ScreenSelectCourse]
Class=ScreenSelectMusic