From 6c65e58e372c8a1512910ec5e2a74606077f0d6e Mon Sep 17 00:00:00 2001 From: NishiOwO Date: Tue, 24 Mar 2026 04:27:57 +0900 Subject: [PATCH] fix --- src/text/text.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/text/text.c b/src/text/text.c index 8d19de8..9884915 100644 --- a/src/text/text.c +++ b/src/text/text.c @@ -70,8 +70,7 @@ void* MwFontLoad(unsigned char* data, unsigned int size) { } void MwFontFree(void* handle) { - if(MwFLFontFree) - return MwFLFontFree(handle); + if(MwFLFontFree) MwFLFontFree(handle); } static void bitmap_MwDrawText(MwWidget handle, MwPoint* point, const char* text, int bold, int align, MwLLColor color) {