mirror of
https://github.com/raysan5/raylib.git
synced 2025-10-14 22:06:01 +00:00
Merge pull request #761 from Demizdor/master
Fixed height bug in DrawTextRecEx()
This commit is contained in:
@@ -897,7 +897,7 @@ void DrawTextRecEx(Font font, const char *text, Rectangle rec, float fontSize, f
|
||||
textOffsetX = 0;
|
||||
}
|
||||
|
||||
if ((textOffsetY + (int)((font.baseSize + font.baseSize/2)*scaleFactor)) > rec.height) break;
|
||||
if ((textOffsetY + (int)(font.baseSize*scaleFactor)) > rec.height) break;
|
||||
|
||||
//draw selected
|
||||
bool isGlyphSelected = false;
|
||||
|
Reference in New Issue
Block a user