diff options
Diffstat (limited to 'examples/shapes/shapes_bouncing_ball.c')
| -rw-r--r-- | examples/shapes/shapes_bouncing_ball.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/examples/shapes/shapes_bouncing_ball.c b/examples/shapes/shapes_bouncing_ball.c index 203d88a5..16273b65 100644 --- a/examples/shapes/shapes_bouncing_ball.c +++ b/examples/shapes/shapes_bouncing_ball.c @@ -67,8 +67,8 @@ int main(void) // On pause, we draw a blinking message if (pause && ((framesCounter/30)%2)) DrawText("PAUSED", 350, 200, 30, GRAY); - DrawCircle(400.5, 300.5, 50, BLACK); - DrawCircle(528.0, 172.0, 26, BLACK); + DrawCircle(400.5f, 300.5f, 50.0f, BLACK); + DrawCircle(528.0f, 172.0f, 26.0f, BLACK); DrawFPS(10, 10); |
