GAMEMAN-> to GameManager::

This commit is contained in:
Steve Checkoway
2008-03-24 12:50:16 +00:00
parent 551d9bfc23
commit 521c1c23e5
28 changed files with 42 additions and 42 deletions
+2 -2
View File
@@ -156,7 +156,7 @@ static void MoveNop( int &iSel, bool bToSel, const ConfOption *pConfOption )
static void GameChoices( vector<RString> &out )
{
vector<const Game*> aGames;
GAMEMAN->GetEnabledGames( aGames );
GameManager::GetEnabledGames( aGames );
FOREACH( const Game*, aGames, g )
{
RString sGameName = (*g)->m_szName;
@@ -179,7 +179,7 @@ static void GameSel( int &sel, bool ToSel, const ConfOption *pConfOption )
sel = i;
} else {
vector<const Game*> aGames;
GAMEMAN->GetEnabledGames( aGames );
GameManager::GetEnabledGames( aGames );
StepMania::ChangeCurrentGame( aGames[sel] );
}
}