summaryrefslogtreecommitdiffhomepage
path: root/examples/shapes
diff options
context:
space:
mode:
authorRay <[email protected]>2024-04-20 20:32:37 +0200
committerRay <[email protected]>2024-04-20 20:32:37 +0200
commit77cabc8bf21393073b37ae062c0885b541fcd2d1 (patch)
tree68ff6dcdaca7607144acb4c45b4025f233843a8f /examples/shapes
parente85f245ad43283a46bab866d8612569c3246883b (diff)
downloadraylib-77cabc8bf21393073b37ae062c0885b541fcd2d1.tar.gz
raylib-77cabc8bf21393073b37ae062c0885b541fcd2d1.zip
Update shapes_draw_rectangle_rounded.c
Diffstat (limited to 'examples/shapes')
-rw-r--r--examples/shapes/shapes_draw_rectangle_rounded.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/shapes/shapes_draw_rectangle_rounded.c b/examples/shapes/shapes_draw_rectangle_rounded.c
index 2add780a..19280ed0 100644
--- a/examples/shapes/shapes_draw_rectangle_rounded.c
+++ b/examples/shapes/shapes_draw_rectangle_rounded.c
@@ -62,7 +62,7 @@ int main(void)
if (drawRect) DrawRectangleRec(rec, Fade(GOLD, 0.6f));
if (drawRoundedRect) DrawRectangleRounded(rec, roundness, (int)segments, Fade(MAROON, 0.2f));
- if (drawRoundedLines) DrawRectangleRoundedLines(rec, roundness, (int)segments, lineThick, Fade(MAROON, 0.4f));
+ if (drawRoundedLines) DrawRectangleRoundedLinesEx(rec, roundness, (int)segments, lineThick, Fade(MAROON, 0.4f));
// Draw GUI controls
//------------------------------------------------------------------------------