From d904805150990952ab2cf5aee9848fab1c368a55 Mon Sep 17 00:00:00 2001 From: Glenn Maynard Date: Tue, 25 May 2004 02:15:19 +0000 Subject: [PATCH] differentiate easy and difficult course scores --- stepmania/src/GameState.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/stepmania/src/GameState.cpp b/stepmania/src/GameState.cpp index ac1373a6a4..afd42842ce 100644 --- a/stepmania/src/GameState.cpp +++ b/stepmania/src/GameState.cpp @@ -1509,6 +1509,8 @@ void GameState::GetRankingFeats( PlayerNumber pn, vector &asFeatsOu feat.Type = RankingFeat::COURSE; feat.pCourse = pCourse; feat.Feat = ssprintf("MR #%d in %s", i+1, pCourse->m_sName.c_str() ); + if( cd != COURSE_DIFFICULTY_REGULAR ) + feat.Feat += " " + CourseDifficultyToThemedString(cd); feat.pStringToFill = &hs.sName; feat.grade = GRADE_NO_DATA; feat.iScore = hs.iScore;