more reverting of 750b688

This commit is contained in:
AJ Kelly
2011-06-12 20:36:06 -05:00
parent e55270cade
commit 79b0c1ccbe
+1 -1
View File
@@ -200,7 +200,7 @@ bool NoteSkinManager::DoesNoteSkinExist( const RString &sSkinName )
vector<RString> asSkinNames;
GetAllNoteSkinNamesForGame( GAMESTATE->m_pCurGame, asSkinNames );
for( unsigned i=0; i<asSkinNames.size(); i++ )
if( sSkinName.EqualsNoCase(asSkinNames[i]) )
if( 0==stricmp(sSkinName, asSkinNames[i]) )
return true;
return false;
}