Fix minor screen clipper bug

This commit is contained in:
James Lambert 2022-07-07 12:44:47 -06:00
parent 27b3687f5c
commit b47e38e674

View file

@ -104,7 +104,7 @@ void screenClipperBoundingPoints(struct ScreenClipper* clipper, struct Vector3*
pointCount = screenClipperClipBoundary(clipper, clipBufferSwap, clipBuffer, pointCount, 1, -1);
for (unsigned i = 0; i < pointCount; ++i) {
screenClipperIncludePoint(&clipBufferSwap[i], output);
screenClipperIncludePoint(&clipBuffer[i], output);
}
struct Vector2 negativeOne;