From 5d3f76e6ecf8061ef3c8d0421b43fffef588cef4 Mon Sep 17 00:00:00 2001 From: Glenn Maynard Date: Thu, 5 May 2005 08:32:42 +0000 Subject: [PATCH] "last 7 days" != "this week"; change to not be confusing when compared against the weekly view --- stepmania/src/ScreenBookkeeping.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/stepmania/src/ScreenBookkeeping.cpp b/stepmania/src/ScreenBookkeeping.cpp index d9bd9a19cc..43e09fadcc 100644 --- a/stepmania/src/ScreenBookkeeping.cpp +++ b/stepmania/src/ScreenBookkeeping.cpp @@ -135,12 +135,12 @@ void ScreenBookkeeping::ChangeView( View newView ) iTotalLast += coins[i]; } + sTitle += "Total\n"; + sData += ssprintf("%i\n", iTotalLast); + sTitle += "\n"; sData += "\n"; - sTitle += "Total This Week\n"; - sData += ssprintf("%i\n", iTotalLast); - sTitle += "Daily Average\n"; float fAverage = iTotalLast/(float)NUM_LAST_DAYS; sData += ssprintf("%.1f\n",fAverage);