소스 검색

[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;

불러오는 중...
취소
저장