From 4b69f947dde6b3c6a9ab24d6b02d3dced7f6122a Mon Sep 17 00:00:00 2001 From: Glenn Maynard Date: Sat, 1 Jan 2005 22:10:09 +0000 Subject: [PATCH] cleanup --- stepmania/src/BitmapText.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/stepmania/src/BitmapText.cpp b/stepmania/src/BitmapText.cpp index 85cd835039..5e20cffee4 100644 --- a/stepmania/src/BitmapText.cpp +++ b/stepmania/src/BitmapText.cpp @@ -191,7 +191,7 @@ void BitmapText::BuildChars() void BitmapText::DrawChars() { // bail if cropped all the way - if( m_pTempState->crop.left + m_pTempState->crop.right >= 1 || + if( m_pTempState->crop.left + m_pTempState->crop.right >= 1 || m_pTempState->crop.top + m_pTempState->crop.bottom >= 1 ) return; @@ -206,7 +206,7 @@ void BitmapText::DrawChars() m_pTempState->fade.left > 0 || m_pTempState->fade.right > 0 ) { - /* Handle fading by tweaking the alpha values of the verteces. */ + /* Handle fading by tweaking the alpha values of the vertices. */ /* Actual size of the fade on each side: */ const RectF &FadeDist = m_pTempState->fade;