浏览代码

Merge pull request #766 from Skabunkel/master

#764 - Quick fix that clears alot of memory.
pull/767/head
Ray 5 年前
committed by GitHub
父节点
当前提交
56c79a10de
找不到此签名对应的密钥 GPG 密钥 ID: 4AEE18F83AFDEB23
共有 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);

正在加载...
取消
保存