From 2e06c4213ef2d67e294e9c68bd8e7f4cdd4c87dc Mon Sep 17 00:00:00 2001 From: Glenn Maynard Date: Tue, 1 Jul 2003 20:14:08 +0000 Subject: [PATCH] fix padding --- stepmania/src/ScreenRanking.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/stepmania/src/ScreenRanking.cpp b/stepmania/src/ScreenRanking.cpp index 034431ad67..c070407854 100644 --- a/stepmania/src/ScreenRanking.cpp +++ b/stepmania/src/ScreenRanking.cpp @@ -256,7 +256,7 @@ void ScreenRanking::SetPage( PageToShow pts ) } else { m_textPoints[l].SetText( "" ); m_textTime[l].SetText( "" ); - m_textScores[l].SetText( ssprintf("%9d",iScore) ); + m_textScores[l].SetText( ssprintf("%09d",iScore) ); } m_textNames[l].SetDiffuse( TEXT_COLOR(pts.colorIndex) ); m_textPoints[l].SetDiffuse( TEXT_COLOR(pts.colorIndex) );