diff --git a/stepmania/src/Course.cpp b/stepmania/src/Course.cpp index 3141145234..274f7f6328 100644 --- a/stepmania/src/Course.cpp +++ b/stepmania/src/Course.cpp @@ -560,7 +560,11 @@ bool Course::IsMysterySong( int stage ) const Difficulty Course::GetDifficulty( int stage ) const { - return m_entries[stage].difficulty; + Difficulty dc = m_entries[stage].difficulty; + if(GAMESTATE->m_bDifficultCourses) + dc = Difficulty(dc + 1); + + return dc; } void Course::GetMeterRange( int stage, int& iMeterLowOut, int& iMeterHighOut ) const