From fef2766100f710da1c2b0b541f87bf5b88109a08 Mon Sep 17 00:00:00 2001 From: Glenn Maynard Date: Sun, 20 Apr 2003 01:26:49 +0000 Subject: [PATCH] fix difficulty display after changing difficulty for random courses --- stepmania/src/Course.cpp | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) 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