diff options
| author | Ray <[email protected]> | 2020-10-05 20:19:18 +0200 |
|---|---|---|
| committer | Ray <[email protected]> | 2020-10-05 20:19:18 +0200 |
| commit | 41192c6d4a66b45017af3a285ba3b6a7835b5989 (patch) | |
| tree | 184448d411ab6ed4d793633566ad54349f52ff67 /examples/shapes | |
| parent | b29311c7cacf17b3512d837951d9e02fceae586f (diff) | |
| download | raylib-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.c | 2 |
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; |
