fix compile

This commit is contained in:
AJ Kelly
2010-06-27 15:25:09 -05:00
parent 476af100fb
commit b3798d9bdf
+3 -3
View File
@@ -103,9 +103,9 @@ static bool LoadFromKSFFile( const RString &sPath, Steps &out, const Song &song,
// new cases from Aldo_MX's fork:
else if( 0==stricmp(sValueName,"PLAYER") )
{
RString player = sParams[1];
player.ToLower();
if( player.Find( "double" ) != -1 )
RString sPlayer = sParams[1];
sPlayer.MakeLower();
if( sPlayer.find( "double" ) != string::npos )
bDoublesChart = true;
}
}