Sfoglia il codice sorgente

Fixed height bug in DrawTextRecEx()

pull/761/head
Demizdor 5 anni fa
parent
commit
40a76cf021
1 ha cambiato i file con 1 aggiunte e 1 eliminazioni
  1. +1
    -1
      src/text.c

+ 1
- 1
src/text.c Vedi File

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

Caricamento…
Annulla
Salva