Ver a proveniência

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

pull/765/head
Skabunkel há 5 anos
ascendente
cometimento
795c5e949d
1 ficheiros alterados com 4 adições e 0 eliminações
  1. +4
    -0
      src/text.c

+ 4
- 0
src/text.c Ver ficheiro

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

Carregando…
Cancelar
Guardar