diff --git a/stepmania/src/GameManager.cpp b/stepmania/src/GameManager.cpp index f951c28b6f..d020850765 100644 --- a/stepmania/src/GameManager.cpp +++ b/stepmania/src/GameManager.cpp @@ -2614,9 +2614,7 @@ StepsType GameManager::StringToStepsType( RString sStepsType ) if( g_StepsTypes[i].szName == sStepsType ) return StepsType(i); - // invalid StepsType - LOG->Warn( "Invalid StepsType string '%s' encountered. Assuming this is 'dance-single'.", sStepsType.c_str() ); - return STEPS_TYPE_DANCE_SINGLE; + return StepsType_Invalid; } RString GameManager::StepsTypeToString( StepsType st )