소스 검색

Returning recs

Tiny bug fix returning the rectangle on the rectangle util functions.
pull/5391/head
Matorio 2 달 전
부모
커밋
52bb2ca163
1개의 변경된 파일2개의 추가작업 그리고 0개의 파일을 삭제
  1. +2
    -0
      src/rtextures.c

+ 2
- 0
src/rtextures.c 파일 보기

@ -4866,6 +4866,7 @@ Rectangle ExpandRectangle(Rectangle rec, float expand)
rec.y -= expand / 2.0f;
rec.width += expand;
rec.height += expand;
return rec;
}
// Shrink a rectangle uniformly
@ -4875,6 +4876,7 @@ Rectangle ShrinkRectangle(Rectangle rec, float shrink)
rec.y += shrink / 2.0f;
rec.width -= shrink;
rec.height -= shrink;
return rec;
}
// Get hexadecimal value for a Color

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