fix compile
This commit is contained in:
@@ -103,9 +103,9 @@ static bool LoadFromKSFFile( const RString &sPath, Steps &out, const Song &song,
|
|||||||
// new cases from Aldo_MX's fork:
|
// new cases from Aldo_MX's fork:
|
||||||
else if( 0==stricmp(sValueName,"PLAYER") )
|
else if( 0==stricmp(sValueName,"PLAYER") )
|
||||||
{
|
{
|
||||||
RString player = sParams[1];
|
RString sPlayer = sParams[1];
|
||||||
player.ToLower();
|
sPlayer.MakeLower();
|
||||||
if( player.Find( "double" ) != -1 )
|
if( sPlayer.find( "double" ) != string::npos )
|
||||||
bDoublesChart = true;
|
bDoublesChart = true;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user