From d2fb69ea49928ea18c78eed86543557ebdbe0c27 Mon Sep 17 00:00:00 2001 From: Chris Danford Date: Sat, 28 Aug 2004 20:16:25 +0000 Subject: [PATCH] fix wrong calorie stat displayed --- stepmania/src/ScreenEnding.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/stepmania/src/ScreenEnding.cpp b/stepmania/src/ScreenEnding.cpp index 24702b0da7..027cf5c9d3 100644 --- a/stepmania/src/ScreenEnding.cpp +++ b/stepmania/src/ScreenEnding.cpp @@ -69,7 +69,7 @@ CString GetStatsLineValue( PlayerNumber pn, EndingStatsLine line ) switch( line ) { - case CALORIES_TODAY: return pProfile->GetDisplayTotalCaloriesBurned(); + case CALORIES_TODAY: return pProfile->GetDisplayTotalCaloriesBurnedToday(); case CURRENT_COMBO: return Commify( pProfile->m_iCurrentCombo ); case PERCENT_COMPLETE: {