Explorar el Código

#764 - Quick fix that clears alot of memory, there seems to be more hiding somewhere else.

pull/765/head
Skabunkel hace 5 años
padre
commit
795c5e949d
Se han modificado 1 ficheros con 4 adiciones y 0 borrados
  1. +4
    -0
      src/text.c

+ 4
- 0
src/text.c Ver fichero

@ -684,6 +684,10 @@ void UnloadFont(Font font)
// NOTE: Make sure spriteFont is not default font (fallback)
if (font.texture.id != GetFontDefault().texture.id)
{
for (int i = 0; i < font.charsCount; i++)
{
free(font.chars[i].data);
}
UnloadTexture(font.texture);
free(font.chars);

Cargando…
Cancelar
Guardar