From 3022f850f49f6090136a6b69222f5b557cc9309a Mon Sep 17 00:00:00 2001 From: Chris Danford Date: Sun, 22 Aug 2004 16:28:19 +0000 Subject: [PATCH] make header text consistent --- 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 37c4e8a67f..0d25ff694d 100644 --- a/stepmania/src/ScreenBookkeeping.cpp +++ b/stepmania/src/ScreenBookkeeping.cpp @@ -142,7 +142,7 @@ void ScreenBookkeeping::ChangeView( View newView ) break; case VIEW_LAST_WEEKS: { - m_textTitle.SetText( ssprintf("Last %d weeks", NUM_LAST_WEEKS) ); + m_textTitle.SetText( ssprintf("Coin Data of Last %d weeks", NUM_LAST_WEEKS) ); int coins[NUM_LAST_WEEKS]; BOOKKEEPER->GetCoinsLastWeeks( coins ); @@ -164,7 +164,7 @@ void ScreenBookkeeping::ChangeView( View newView ) break; case VIEW_DAY_OF_WEEK: { - m_textTitle.SetText( "Day of week" ); + m_textTitle.SetText( "Coin Data by Day of week" ); int coins[DAYS_IN_WEEK]; BOOKKEEPER->GetCoinsByDayOfWeek( coins ); @@ -186,7 +186,7 @@ void ScreenBookkeeping::ChangeView( View newView ) break; case VIEW_HOUR_OF_DAY: { - m_textTitle.SetText( "Hour of day" ); + m_textTitle.SetText( "Coin Data by Hour of day" ); int coins[HOURS_IN_DAY]; BOOKKEEPER->GetCoinsByHour( coins );