浏览代码

Removed unnecessary

pull/773/head
Skabunkel 5 年前
父节点
当前提交
a90c9c5ade
共有 1 个文件被更改,包括 1 次插入2 次删除
  1. +1
    -2
      src/text.c

+ 1
- 2
src/text.c 查看文件

@ -688,8 +688,7 @@ void UnloadFont(Font font)
{
for (int i = 0; i < font.charsCount; i++)
{
if(font.chars[i].data != NULL)
free(font.chars[i].data);
free(font.chars[i].data);
}
UnloadTexture(font.texture);
free(font.chars);

正在加载...
取消
保存