summaryrefslogtreecommitdiffhomepage
path: root/examples/shapes
diff options
context:
space:
mode:
authorRay <[email protected]>2020-10-05 20:19:18 +0200
committerRay <[email protected]>2020-10-05 20:19:18 +0200
commit41192c6d4a66b45017af3a285ba3b6a7835b5989 (patch)
tree184448d411ab6ed4d793633566ad54349f52ff67 /examples/shapes
parentb29311c7cacf17b3512d837951d9e02fceae586f (diff)
downloadraylib-41192c6d4a66b45017af3a285ba3b6a7835b5989.tar.gz
raylib-41192c6d4a66b45017af3a285ba3b6a7835b5989.zip
Replace 0.f by 0.0f
Diffstat (limited to 'examples/shapes')
-rw-r--r--examples/shapes/shapes_draw_circle_sector.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/shapes/shapes_draw_circle_sector.c b/examples/shapes/shapes_draw_circle_sector.c
index 60298cfe..8b1cf6ec 100644
--- a/examples/shapes/shapes_draw_circle_sector.c
+++ b/examples/shapes/shapes_draw_circle_sector.c
@@ -27,7 +27,7 @@ int main(void)
Vector2 center = {(GetScreenWidth() - 300)/2, GetScreenHeight()/2 };
- float outerRadius = 180.f;
+ float outerRadius = 180.0f;
int startAngle = 0;
int endAngle = 180;
int segments = 0;