This commit is contained in:
Steve Checkoway
2007-06-01 04:50:36 +00:00
parent 75fc300d14
commit 666d241a4f
3 changed files with 12 additions and 12 deletions
+2 -2
View File
@@ -43,11 +43,11 @@ Difficulty StringToDifficulty( const RString& sDC )
else if( s2 == "maniac" ) return Difficulty_Hard;
else if( s2 == "heavy" ) return Difficulty_Hard;
else if( s2 == "smaniac" ) return Difficulty_Challenge;
else if( s2 == "challenge" )return Difficulty_Challenge;
else if( s2 == "challenge" ) return Difficulty_Challenge;
else if( s2 == "expert" ) return Difficulty_Challenge;
else if( s2 == "oni" ) return Difficulty_Challenge;
else if( s2 == "edit" ) return Difficulty_Edit;
else return Difficulty_Invalid;
else return Difficulty_Invalid;
}