diff options
Diffstat (limited to 'src/text.c')
| -rw-r--r-- | src/text.c | 3 |
1 files changed, 1 insertions, 2 deletions
@@ -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); |
