소스 검색
Merge pull request #766 from Skabunkel/master
#764 - Quick fix that clears alot of memory.
pull/767/head
Ray
5 년 전
committed by
GitHub
No known key found for this signature in database
GPG 키 ID: 4AEE18F83AFDEB23
1개의 변경된 파일과
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); |
|
|
|
|
|
|
|