Преглед изворни кода

Merge pull request #773 from Skabunkel/master

Removed unnecessary if
pull/775/head
Ray пре 5 година
committed by GitHub
родитељ
комит
5735f13fe5
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
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);

Loading…
Откажи
Сачувај