Added alternate name for DIFFICULTY_EASY to account for recent arcade mixes.

This commit is contained in:
Jason Felds
2006-07-08 05:25:56 +00:00
parent 46611abb9a
commit e1547e4bac
+1 -1
View File
@@ -113,7 +113,7 @@ bool KSFLoader::LoadFromKSFFile( const RString &sPath, Steps &out, const Song &s
out.SetDifficulty(DIFFICULTY_MEDIUM);
if(!out.GetMeter()) out.SetMeter(5);
}
else if( sFName.find("easy") != string::npos )
else if( sFName.find("easy") != string::npos || sFName.find("normal") != string::npos )
{
out.SetDifficulty(DIFFICULTY_EASY);
if(!out.GetMeter()) out.SetMeter(2);