diff --git a/src/shapes.c b/src/shapes.c index 8197735f0..639934695 100644 --- a/src/shapes.c +++ b/src/shapes.c @@ -683,5 +683,5 @@ Rectangle GetCollisionRec(Rectangle rec1, Rectangle rec2) static float EaseCubicInOut(float t, float b, float c, float d) { if ((t/=d/2) < 1) return (c/2*t*t*t + b); - return (c/2*((t-=2)*t*t + 2) + b); -} \ No newline at end of file + return (c/2*((t-2)*t*t + 2) + b); +}