Merge pull request #871 from Guldoman/fix_bad_clip_draw_text

Always check if the beginning of the text needs to be clipped
This commit is contained in:
Jefferson González 2022-03-07 18:49:14 -04:00 committed by GitHub
commit 8a31a2b169
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -289,7 +289,7 @@ float ren_draw_text(RenFont **fonts, const char *text, float x, int y, RenColor
break;
if (start_x + (glyph_end - glyph_start) >= clip_end_x)
glyph_end = glyph_start + (clip_end_x - start_x);
else if (start_x < clip.x) {
if (start_x < clip.x) {
int offset = clip.x - start_x;
start_x += offset;
glyph_start += offset;