From db86dbb519cfd0de646469e3481d9af315e33d52 Mon Sep 17 00:00:00 2001 From: Glenn Maynard Date: Sun, 25 Jun 2006 04:00:34 +0000 Subject: [PATCH] fix if iPadding < 0 --- stepmania/src/BitmapText.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/stepmania/src/BitmapText.cpp b/stepmania/src/BitmapText.cpp index 0ce795c9d2..db0561d018 100644 --- a/stepmania/src/BitmapText.cpp +++ b/stepmania/src/BitmapText.cpp @@ -186,7 +186,7 @@ void BitmapText::BuildChars() iPadding += m_iVertSpacing; /* There's padding between every line: */ - m_size.y += iPadding * (m_wTextLines.size()-1); + m_size.y += iPadding * int(m_wTextLines.size()-1); int iY; // the top position of the first row of characters switch( m_VertAlign )