From 442abaab725a35eb24801a9561d94adb79420a12 Mon Sep 17 00:00:00 2001 From: Ray Date: Fri, 19 Mar 2021 22:39:39 +0100 Subject: Updated example assets --- src/shapes.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src') diff --git a/src/shapes.c b/src/shapes.c index bc822625..bad523f9 100644 --- a/src/shapes.c +++ b/src/shapes.c @@ -173,7 +173,7 @@ void DrawLineBezierQuad(Vector2 startPos, Vector2 endPos, Vector2 controlPos, fl current.y = a*startPos.y + b*controlPos.y + c*endPos.y; current.x = a*startPos.x + b*controlPos.x + c*endPos.x; - DrawLineEx(previous,current,thick,color); + DrawLineEx(previous, current, thick, color); previous = current; } -- cgit v1.2.3