Added synchronize

This commit is contained in:
Chris Danford
2002-02-11 04:46:31 +00:00
parent 7682367a4e
commit 6ed1d938e7
18 changed files with 180 additions and 45 deletions
+2 -2
View File
@@ -219,7 +219,7 @@ void BitmapText::RebuildVertexBuffer()
case align_top: fY = -(m_sTextLines.GetSize()) * fHeight / 2; break;
case align_middle: fY = 0; break;
case align_bottom: fY = (m_sTextLines.GetSize()) * fHeight / 2; break;
default: ASSERT( true );
default: ASSERT( false );
}
@@ -234,7 +234,7 @@ void BitmapText::RebuildVertexBuffer()
case align_left: fX = 0; break;
case align_center: fX = -(fLineWidth/2); break;
case align_right: fX = -fLineWidth; break;
default: ASSERT( true );
default: ASSERT( false );
}
for( int j=0; j<sLine.GetLength(); j++ ) // for each character in the line