소스 검색

Fixed height bug in DrawTextRecEx()

pull/761/head
Demizdor 5 년 전
부모
커밋
40a76cf021
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. +1
    -1
      src/text.c

+ 1
- 1
src/text.c 파일 보기

@ -897,7 +897,7 @@ void DrawTextRecEx(Font font, const char *text, Rectangle rec, float fontSize, f
textOffsetX = 0;
}
if ((textOffsetY + (int)(p">(font.baseSize + font.baseSize/2)*scaleFactor)) > rec.height) break;
if ((textOffsetY + (int)(font.baseSize*scaleFactor)) > rec.height) break;
//draw selected
bool isGlyphSelected = false;

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