From 6ea335c97106b56a120ca557948612beabce803e Mon Sep 17 00:00:00 2001 From: Glenn Maynard Date: Mon, 12 Jan 2004 11:09:03 +0000 Subject: [PATCH] fix format string --- stepmania/src/ProfileManager.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/stepmania/src/ProfileManager.cpp b/stepmania/src/ProfileManager.cpp index 7732249109..0f20482e13 100644 --- a/stepmania/src/ProfileManager.cpp +++ b/stepmania/src/ProfileManager.cpp @@ -80,7 +80,7 @@ CString Profile::GetDisplayCaloriesBurned() if( m_fWeightPounds == 0 ) // weight not entered return "N/A"; else - return ssprintf("%f.3Cal",m_fCaloriesBurned); + return ssprintf("%iCal",m_fCaloriesBurned); } int Profile::GetTotalNumSongsPlayed()