compile fix

This commit is contained in:
Glenn Maynard
2003-02-14 07:04:19 +00:00
parent 0d917ae175
commit 9278d29a9c
+2 -1
View File
@@ -543,7 +543,8 @@ void RageDisplay::DrawLoop_Polys( const RageVertex v[], int iNumVerts, float Lin
{ {
ASSERT( iNumVerts >= 3 ); ASSERT( iNumVerts >= 3 );
for(int i = 0; i < iNumVerts; ++i) int i;
for(i = 0; i < iNumVerts; ++i)
DrawPolyLine(v[i], v[(i+1)%iNumVerts], LineWidth); DrawPolyLine(v[i], v[(i+1)%iNumVerts], LineWidth);
/* Join the lines with circles so we get rounded corners. */ /* Join the lines with circles so we get rounded corners. */