From 92317f090adcfd6bf65dae1237f3d456fa85cb99 Mon Sep 17 00:00:00 2001 From: nobytesgiven Date: Sat, 22 Oct 2022 16:00:03 +0300 Subject: [PATCH] typo --- src/rshapes.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/rshapes.c b/src/rshapes.c index f6c6192e6..bb5358e36 100644 --- a/src/rshapes.c +++ b/src/rshapes.c @@ -211,7 +211,7 @@ void DrawLineBezier(Vector2 startPos, Vector2 endPos, float thick, Color color) double dx = current.x-previous.x; double size = 0.5*thick/sqrt(dx*dx+dy*dy); - f (i==1) { + if (i==1) { pts[0].x = previous.x+dy*size; pts[0].y = previous.y-dx*size; pts[1].x = previous.x-dy*size;