"last 7 days" != "this week"; change to not be confusing when compared

against the weekly view
This commit is contained in:
Glenn Maynard
2005-05-05 08:32:42 +00:00
parent 1ffcc7207c
commit 5d3f76e6ec
+3 -3
View File
@@ -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);