From d17643e907da7ad54635e12e661ba5cdbd2f266d Mon Sep 17 00:00:00 2001 From: Jason Felds Date: Sun, 9 Oct 2011 13:02:24 -0400 Subject: [PATCH] Display the chartname instead of the description. --- src/ScreenEdit.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ScreenEdit.cpp b/src/ScreenEdit.cpp index 9dbd2c59c7..c6f947008b 100644 --- a/src/ScreenEdit.cpp +++ b/src/ScreenEdit.cpp @@ -1841,7 +1841,7 @@ void ScreenEdit::InputEdit( const InputEventPlus &input, EditButton EditB ) SWITCHED_TO.GetValue() + " %s %s '%s' (%d of %d)", GAMEMAN->GetStepsTypeInfo( pSteps->m_StepsType ).szName, DifficultyToString( pSteps->GetDifficulty() ).c_str(), - pSteps->GetDescription().c_str(), + pSteps->GetChartName().c_str(), it - vSteps.begin() + 1, int(vSteps.size()) ); SCREENMAN->SystemMessage( s );