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) ); } }