Explorar el Código

Fixed height bug in DrawTextRecEx()

pull/761/head
Demizdor hace 5 años
padre
commit
40a76cf021
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. +1
    -1
      src/text.c

+ 1
- 1
src/text.c Ver fichero

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

Cargando…
Cancelar
Guardar