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 end
function OptionsMenuAvailable() function OptionsMenuAvailable()
if GAMESTATE:IsExtraStage() or GAMESTATE:IsExtraStage2() then return "0" end if GAMESTATE:IsExtraStage() or GAMESTATE:IsExtraStage2() then return false end
return "1" return true
end end
-- (c) 2005 Glenn Maynard, Chris Danford -- (c) 2005 Glenn Maynard, Chris Danford
+1 -1
View File
@@ -675,7 +675,7 @@ NextOptionsScreen=@SelectFirstOptionsScreen()
DoRouletteOnMenuTimer=1 DoRouletteOnMenuTimer=1
AlignMusicBeat=0 AlignMusicBeat=0
Codes= Codes=
OptionsMenuAvailable=@OptionsMenuAvailable() OptionsMenuAvailable=OptionsMenuAvailable()
[ScreenSelectCourse] [ScreenSelectCourse]
Class=ScreenSelectMusic Class=ScreenSelectMusic