Browse Source

REVIEWED: `CheckCollisionPointPoly()`

Ray 3 years ago
parent
commit
853c66baed
1 changed files with 1 additions and 1 deletions
  1. 1 1
      src/rshapes.c

+ 1 - 1
src/rshapes.c

@@ -1555,7 +1555,7 @@ bool CheckCollisionPointPoly(Vector2 point, Vector2 *points, int pointCount)
     
     if (pointCount > 2)
     {
-        for (int i = 0; i < pointCount; i++)
+        for (int i = 0; i < pointCount - 1; i++)
         {
             Vector2 vc = points[i];
             Vector2 vn = points[i + 1];