fix "BEGINNER" not being loaded correctly

This commit is contained in:
Glenn Maynard
2004-03-29 21:08:12 +00:00
parent 01ea004030
commit 124860f1ac
+1 -1
View File
@@ -49,7 +49,7 @@ Difficulty StringToDifficulty( const CString& sDC )
{
CString s2 = sDC;
s2.MakeLower();
if( sDC == "beginner" ) return DIFFICULTY_BEGINNER;
if( s2 == "beginner" ) return DIFFICULTY_BEGINNER;
else if( s2 == "easy" ) return DIFFICULTY_EASY;
else if( s2 == "basic" ) return DIFFICULTY_EASY;
else if( s2 == "light" ) return DIFFICULTY_EASY;