diff --git a/stepmania/src/Steps.cpp b/stepmania/src/Steps.cpp index c6e732198d..330e161a8b 100644 --- a/stepmania/src/Steps.cpp +++ b/stepmania/src/Steps.cpp @@ -158,7 +158,7 @@ void Steps::TidyUpData() if( GetMeter() < 1) // meter is invalid SetMeter( int(PredictMeter()) ); - if( m_sDescription.size() > MAX_DESCRIPTION_LENGTH ) + if( int(m_sDescription.size()) > MAX_DESCRIPTION_LENGTH ) m_sDescription = m_sDescription.Left( MAX_DESCRIPTION_LENGTH ); }