fix difficulty display after changing difficulty for random courses

This commit is contained in:
Glenn Maynard
2003-04-20 01:26:49 +00:00
parent 4a848d9a3d
commit fef2766100
+5 -1
View File
@@ -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