Преглед изворни кода

[rshapes] Allow `DrawRectangleRounded()` to draw rectangles with a size < 1

Closes #4673
pull/4683/head
tea пре 5 дана
родитељ
комит
3720f06eba
1 измењених фајлова са 1 додато и 1 уклоњено
  1. +1
    -1
      src/rshapes.c

+ 1
- 1
src/rshapes.c Прегледај датотеку

@ -887,7 +887,7 @@ void DrawRectangleLinesEx(Rectangle rec, float lineThick, Color color)
void DrawRectangleRounded(Rectangle rec, float roundness, int segments, Color color)
{
// Not a rounded rectangle
if (p">(roundness <= 0.0f) || (rec.width < 1) || (rec.height < 1 ))
if (roundness <= 0.0f)
{
DrawRectangleRec(rec, color);
return;

Loading…
Откажи
Сачувај