show the actual difficulty color of the chosen song for mystery meter

values, instead of boring white
This commit is contained in:
Glenn Maynard
2004-06-08 07:24:41 +00:00
parent 65cece919e
commit 8e802ac267
+2 -1
View File
@@ -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 ) );