summaryrefslogtreecommitdiffhomepage
path: root/examples/shapes
diff options
context:
space:
mode:
authorraysan5 <[email protected]>2020-12-24 23:07:52 +0100
committerraysan5 <[email protected]>2020-12-24 23:07:52 +0100
commitea0f6c7a26f3a61f3be542aa8f066ce033766a9f (patch)
tree403dec84eb60bf77cd7fa89dde99b193bddfe89e /examples/shapes
parentb93c4b0c2071dad67276806d00d47c8cf7b59f07 (diff)
downloadraylib-ea0f6c7a26f3a61f3be542aa8f066ce033766a9f.tar.gz
raylib-ea0f6c7a26f3a61f3be542aa8f066ce033766a9f.zip
Replace TABS by 4 spaces
Diffstat (limited to 'examples/shapes')
-rw-r--r--examples/shapes/shapes_draw_rectangle_rounded.c14
1 files changed, 7 insertions, 7 deletions
diff --git a/examples/shapes/shapes_draw_rectangle_rounded.c b/examples/shapes/shapes_draw_rectangle_rounded.c
index a798228f..b76e1264 100644
--- a/examples/shapes/shapes_draw_rectangle_rounded.c
+++ b/examples/shapes/shapes_draw_rectangle_rounded.c
@@ -59,13 +59,13 @@ int main(void)
if (drawRoundedRect) DrawRectangleRounded(rec, roundness, segments, Fade(MAROON, 0.2));
if (drawRoundedLines) DrawRectangleRoundedLines(rec,roundness, segments, lineThick, Fade(MAROON, 0.4));
- // Draw GUI controls
- //------------------------------------------------------------------------------
- width = GuiSliderBar((Rectangle){ 640, 40, 105, 20 }, "Width", NULL, width, 0, GetScreenWidth() - 300);
- height = GuiSliderBar((Rectangle){ 640, 70, 105, 20 }, "Height", NULL, height, 0, GetScreenHeight() - 50);
- roundness = GuiSliderBar((Rectangle){ 640, 140, 105, 20 }, "Roundness", NULL, roundness, 0.0f, 1.0f);
- lineThick = GuiSliderBar((Rectangle){ 640, 170, 105, 20 }, "Thickness", NULL, lineThick, 0, 20);
- segments = GuiSliderBar((Rectangle){ 640, 240, 105, 20}, "Segments", NULL, segments, 0, 60);
+ // Draw GUI controls
+ //------------------------------------------------------------------------------
+ width = GuiSliderBar((Rectangle){ 640, 40, 105, 20 }, "Width", NULL, width, 0, GetScreenWidth() - 300);
+ height = GuiSliderBar((Rectangle){ 640, 70, 105, 20 }, "Height", NULL, height, 0, GetScreenHeight() - 50);
+ roundness = GuiSliderBar((Rectangle){ 640, 140, 105, 20 }, "Roundness", NULL, roundness, 0.0f, 1.0f);
+ lineThick = GuiSliderBar((Rectangle){ 640, 170, 105, 20 }, "Thickness", NULL, lineThick, 0, 20);
+ segments = GuiSliderBar((Rectangle){ 640, 240, 105, 20}, "Segments", NULL, segments, 0, 60);
drawRoundedRect = GuiCheckBox((Rectangle){ 640, 320, 20, 20 }, "DrawRoundedRect", drawRoundedRect);
drawRoundedLines = GuiCheckBox((Rectangle){ 640, 350, 20, 20 }, "DrawRoundedLines", drawRoundedLines);