From a330623cab9ed47aea7e80367b104bad9542a9e7 Mon Sep 17 00:00:00 2001 From: Glenn Maynard Date: Fri, 19 Mar 2004 02:30:46 +0000 Subject: [PATCH] show edit name, not ambiguous "EDIT" --- stepmania/src/ScreenOptionsMaster.cpp | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/stepmania/src/ScreenOptionsMaster.cpp b/stepmania/src/ScreenOptionsMaster.cpp index db7656c3ce..a7ea916123 100644 --- a/stepmania/src/ScreenOptionsMaster.cpp +++ b/stepmania/src/ScreenOptionsMaster.cpp @@ -136,7 +136,10 @@ void ScreenOptionsMaster::SetStep( OptionRowData &row, OptionRowHandler &hand ) CString s; // convert to theme-defined difficulty name - s = SONGMAN->GetDifficultyThemeName( pSteps->GetDifficulty() ); + if( pSteps->GetDifficulty() == DIFFICULTY_EDIT ) + s = pSteps->GetDescription(); + else + s = SONGMAN->GetDifficultyThemeName( pSteps->GetDifficulty() ); s += ssprintf( " (%d)", pSteps->GetMeter() ); row.choices.push_back( s );