in the middle of working on 1.70. Now compiles in Visual Studio.net

This commit is contained in:
Chris Danford
2002-03-30 20:00:13 +00:00
parent 1c6533c283
commit d2eeed810c
72 changed files with 2726 additions and 1321 deletions
+6 -1
View File
@@ -37,7 +37,8 @@ void TransitionStarWipe::RenderPrimitives()
return;
}
float fPercentOpen;
float fPercentOpen = GetPercentageOpen();
/*
switch( m_TransitionState )
{
case opening_right:
@@ -49,6 +50,7 @@ void TransitionStarWipe::RenderPrimitives()
fPercentOpen = m_fPercentThroughTransition;
break;
}
*/
int iNumStars = SCREEN_HEIGHT/m_iStarHeight + 1;
@@ -69,6 +71,9 @@ void TransitionStarWipe::RenderPrimitives()
x_tilt = abs( y - SCREEN_HEIGHT/2 );
if( bIsAnEvenRow ) x_tilt *= -1;
break;
default:
ASSERT( false );
x_tilt = 0;
}
int x_offset = (int)(fPercentOpen*(SCREEN_WIDTH+SCREEN_HEIGHT+m_iStarWidth));