summaryrefslogtreecommitdiffhomepage
path: root/src/shapes.c
diff options
context:
space:
mode:
authorRay <[email protected]>2019-02-22 12:12:21 +0100
committerRay <[email protected]>2019-02-22 12:12:21 +0100
commita886f5e743cd50744d7800cd70a47f5cb9f663e3 (patch)
treeb045b074e038b75d275bded59a7f382f57ddcff4 /src/shapes.c
parent641895b5ba778fdc9024ebb58446dcc8ea36a00a (diff)
downloadraylib-a886f5e743cd50744d7800cd70a47f5cb9f663e3.tar.gz
raylib-a886f5e743cd50744d7800cd70a47f5cb9f663e3.zip
Remove TABS
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 87bb573c..dbc38082 100644
--- a/src/shapes.c
+++ b/src/shapes.c
@@ -644,7 +644,7 @@ bool CheckCollisionCircleRec(Vector2 center, float radius, Rectangle rec)
if (dy <= (rec.height/2.0f)) { return true; }
float cornerDistanceSq = (dx - rec.width/2.0f)*(dx - rec.width/2.0f) +
- (dy - rec.height/2.0f)*(dy - rec.height/2.0f);
+ (dy - rec.height/2.0f)*(dy - rec.height/2.0f);
return (cornerDistanceSq <= (radius*radius));
}