Update libraries/shared/src/GeometryUtil.cpp

Co-authored-by: David Rowe <david@ctrlaltstudio.com>
This commit is contained in:
daleglass 2020-09-24 22:17:16 +02:00 committed by GitHub
parent 5a8be4de4b
commit ed4164b59e
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -620,7 +620,7 @@ void PolygonClip::clipToScreen(const glm::vec2* inputVertexArray, int inLength,
glm::vec2* tempVertexArrayB = new glm::vec2[maxLength];
// set up our temporary arrays
for(int i=0;i<inLength;i++) {
for (int i=0; i<inLength; i++) {
tempVertexArrayA[i] = inputVertexArray[i];
}