From b516cd9b36d1a6d444757e7cb2f19f81cb1ec712 Mon Sep 17 00:00:00 2001 From: Chris Danford Date: Sun, 27 Jun 2004 06:53:46 +0000 Subject: [PATCH] fix copy/paste error --- stepmania/src/Profile.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/stepmania/src/Profile.cpp b/stepmania/src/Profile.cpp index 1ccf8cc37c..dc8237a49a 100644 --- a/stepmania/src/Profile.cpp +++ b/stepmania/src/Profile.cpp @@ -191,7 +191,7 @@ CString Profile::GetDisplayTotalCaloriesBurnedToday() const if( m_iWeightPounds == 0 ) // weight not entered return "N/A"; else - return FormatCalories( m_fTotalCaloriesBurned ); + return FormatCalories( fCals ); } int Profile::GetTotalNumSongsPlayed() const