From 512af1b8e5f5a1b2fd42fbec069519c75808ea5a Mon Sep 17 00:00:00 2001 From: Glenn Maynard Date: Fri, 25 Oct 2002 05:06:38 +0000 Subject: [PATCH] Next on Fox: When Printfs ATTACK --- stepmania/src/ScoreDisplayNormal.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/stepmania/src/ScoreDisplayNormal.cpp b/stepmania/src/ScoreDisplayNormal.cpp index 38fa0781a3..5f366e8bde 100644 --- a/stepmania/src/ScoreDisplayNormal.cpp +++ b/stepmania/src/ScoreDisplayNormal.cpp @@ -70,7 +70,7 @@ void ScoreDisplayNormal::Update( float fDeltaTime ) m_fScoreVelocity = 0; } - SetText( ssprintf("%*f", NUM_SCORE_DIGITS, m_fTrailingScore) ); + SetText( ssprintf("%*.0f", NUM_SCORE_DIGITS, m_fTrailingScore) ); } }