diff --git a/stepmania/src/GameManager.cpp b/stepmania/src/GameManager.cpp index c7b1111f74..6de4491996 100644 --- a/stepmania/src/GameManager.cpp +++ b/stepmania/src/GameManager.cpp @@ -2934,9 +2934,9 @@ const Game* GameManager::GetGameFromIndex( int index ) bool GameManager::IsGameEnabled( const Game *pGame ) { CStringArray asNoteSkins; - NOTESKIN->GetNoteSkinNames( pGame, asNoteSkins ); + NOTESKIN->GetNoteSkinNames( pGame, asNoteSkins, false ); /* don't omit default */ for( unsigned i = 0; i < asNoteSkins.size(); ++i ) - if( asNoteSkins[i].CompareNoCase("default") ) + if( !asNoteSkins[i].CompareNoCase("default") ) return true; return false;