From 8e802ac267d9e0df24163d085c208a834fff923f Mon Sep 17 00:00:00 2001 From: Glenn Maynard Date: Tue, 8 Jun 2004 07:24:41 +0000 Subject: [PATCH] show the actual difficulty color of the chosen song for mystery meter values, instead of boring white --- stepmania/src/CourseEntryDisplay.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/stepmania/src/CourseEntryDisplay.cpp b/stepmania/src/CourseEntryDisplay.cpp index 2589fc722e..b740d4cb83 100644 --- a/stepmania/src/CourseEntryDisplay.cpp +++ b/stepmania/src/CourseEntryDisplay.cpp @@ -89,7 +89,8 @@ void CourseEntryDisplay::LoadFromTrailEntry( int iNum, const TrailEntry *tes[NUM { int iLow = te->iLowMeter; int iHigh = te->iHighMeter; - SetDifficulty( pn, ssprintf(iLow==iHigh?"%d":"%d-%d", iLow, iHigh), RageColor(1,1,1,1) ); + SetDifficulty( pn, ssprintf(iLow==iHigh?"%d":"%d-%d", iLow, iHigh), + SONGMAN->GetDifficultyColor(te->pSteps->GetDifficulty()) ); } else SetDifficulty( pn, "?", SONGMAN->GetDifficultyColor( dc ) );