fix types

This commit is contained in:
Glenn Maynard
2003-02-14 05:48:21 +00:00
parent 788d3dd2ff
commit d09c2b94b6
3 changed files with 5 additions and 5 deletions
+1 -1
View File
@@ -45,7 +45,7 @@ void TransitionStarWipe::DrawPrimitives()
for( int row=0; row<iNumStars; row++ ) // foreach row of stars
{
BOOL bIsAnEvenRow = row % 2;
bool bIsAnEvenRow = !!(row % 2);
int y = m_iStarHeight*row + m_iStarHeight/2;
int x_tilt;
switch( m_TransitionState )