Load but set visible to false.

This commit is contained in:
Steve Checkoway
2007-05-19 22:36:37 +00:00
parent 15515d466b
commit 1dd699f78e
+8
View File
@@ -190,6 +190,14 @@ void ScreenSelectMusic::BeginScreen()
if( GAMESTATE->m_PlayMode == PlayMode_Invalid )
RageException::Throw( "The PlayMode has not been set. A theme must set the PlayMode before loading ScreenSelectMusic." );
FOREACH_ENUM( PlayerNumber, pn )
{
if( GAMESTATE->IsHumanPlayer(pn) )
continue;
m_sprHighScoreFrame[pn].SetVisible( false );
m_textHighScore[pn].SetVisible( false );
}
OPTIONS_MENU_AVAILABLE.Load( m_sName, "OptionsMenuAvailable" );
PlayCommand( "Mods" );
m_MusicWheel.BeginScreen();