compile fix
This commit is contained in:
@@ -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. */
|
||||||
|
|||||||
Reference in New Issue
Block a user