summaryrefslogtreecommitdiffhomepage
path: root/src/shapes.c
diff options
context:
space:
mode:
authorRay <[email protected]>2021-03-19 22:39:39 +0100
committerRay <[email protected]>2021-03-19 22:39:39 +0100
commit442abaab725a35eb24801a9561d94adb79420a12 (patch)
treee25ac8b3884f431220b73831acedc48b4d98d70b /src/shapes.c
parent5967c1ba1a8b6311cc4abd1a3a2b3d61cccc7760 (diff)
downloadraylib-442abaab725a35eb24801a9561d94adb79420a12.tar.gz
raylib-442abaab725a35eb24801a9561d94adb79420a12.zip
Updated example assets
Diffstat (limited to 'src/shapes.c')
-rw-r--r--src/shapes.c2
1 files changed, 1 insertions, 1 deletions
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;
}