소스 검색

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

pull/765/head
Skabunkel 5 년 전
부모
커밋
795c5e949d
1개의 변경된 파일4개의 추가작업 그리고 0개의 파일을 삭제
  1. +4
    -0
      src/text.c

+ 4
- 0
src/text.c 파일 보기

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

불러오는 중...
취소
저장