fix format string

This commit is contained in:
Glenn Maynard
2004-01-12 11:09:03 +00:00
parent 6b91ee5898
commit 6ea335c971
+1 -1
View File
@@ -80,7 +80,7 @@ CString Profile::GetDisplayCaloriesBurned()
if( m_fWeightPounds == 0 ) // weight not entered if( m_fWeightPounds == 0 ) // weight not entered
return "N/A"; return "N/A";
else else
return ssprintf("%f.3Cal",m_fCaloriesBurned); return ssprintf("%iCal",m_fCaloriesBurned);
} }
int Profile::GetTotalNumSongsPlayed() int Profile::GetTotalNumSongsPlayed()