From e78197cd2e8315a09655233c9b7eadd2728a7e2d Mon Sep 17 00:00:00 2001 From: Chris Danford Date: Tue, 31 Aug 2004 04:29:20 +0000 Subject: [PATCH] differentiate between Songs and Courses % Complete --- stepmania/src/ScreenEnding.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/stepmania/src/ScreenEnding.cpp b/stepmania/src/ScreenEnding.cpp index aaa8a83de9..b9abf2997e 100644 --- a/stepmania/src/ScreenEnding.cpp +++ b/stepmania/src/ScreenEnding.cpp @@ -34,7 +34,8 @@ CString GetStatsLineTitle( PlayerNumber pn, EndingStatsLine line ) { StepsType st = GAMESTATE->GetCurrentStyle()->m_StepsType; CString sStepsType = GAMEMAN->StepsTypeToThemedString(st); - return ssprintf( "%s %% Complete", sStepsType.c_str() ); + CString sType = GAMESTATE->IsCourseMode() ? "Courses" : "Songs"; + return ssprintf( "%s %s %%", sStepsType.c_str(), sType.c_str() ); } case PERCENT_COMPLETE_EASY: case PERCENT_COMPLETE_MEDIUM: