From e8b931aa8e4e89dedee1f22cfab25a14dc80a958 Mon Sep 17 00:00:00 2001 From: Steve Checkoway Date: Fri, 1 Jun 2007 05:04:31 +0000 Subject: [PATCH] Set the steps type to dance single if invalid. --- stepmania/src/Steps.cpp | 3 +++ 1 file changed, 3 insertions(+) diff --git a/stepmania/src/Steps.cpp b/stepmania/src/Steps.cpp index 200d0d8565..a1b57755c4 100644 --- a/stepmania/src/Steps.cpp +++ b/stepmania/src/Steps.cpp @@ -148,6 +148,9 @@ float Steps::PredictMeter() const void Steps::TidyUpData() { + if( m_StepsType == StepsType_Invalid ) + m_StepsType = STEPS_TYPE_DANCE_SINGLE; + if( GetDifficulty() == Difficulty_Invalid ) SetDifficulty( StringToDifficulty(GetDescription()) );