.examples: Minor fix in Box2D

git-svn-id: svn://ultimatepp.org/upp/trunk@6004 f0d560ea-af0d-0410-9eb7-867de7ffcac7
This commit is contained in:
cxl 2013-04-27 12:47:41 +00:00
parent bd6919cb89
commit 41a189542f

View file

@ -82,7 +82,7 @@ struct DebugDraw : b2DebugDraw
p[i] = conv(v[i]);
p[vertexCount] = p[0];
w->DrawPolyline(p, vertexCount + 1, 1, conv(color, 150.0));
w->DrawPolyline(p, 1, conv(color, 150.0));
}
void DrawSolidPolygon(const b2Vec2* v, int vertexCount, const b2Color& color)