show edit name, not ambiguous "EDIT"

This commit is contained in:
Glenn Maynard
2004-03-19 02:30:46 +00:00
parent f5d2ddb719
commit a330623cab
+4 -1
View File
@@ -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 );