From 5d8e39b268df1a5f1beeb9f7fd3589035276c782 Mon Sep 17 00:00:00 2001 From: NishiOwO Date: Mon, 6 Apr 2026 23:28:32 +0900 Subject: [PATCH] better size --- .gitignore | 2 ++ src/text/text.c | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/.gitignore b/.gitignore index 2246055..8816070 100644 --- a/.gitignore +++ b/.gitignore @@ -7,6 +7,8 @@ examples/*/*.exe !examples/*/*.* *.exe *.o +*.obj +*.core *.so *.dll *.lib diff --git a/src/text/text.c b/src/text/text.c index 57e5785..f550195 100644 --- a/src/text/text.c +++ b/src/text/text.c @@ -116,7 +116,7 @@ int MwTextHeight(MwWidget handle, MwFLFont ttf, const char* text) { void* MwFontLoad(unsigned char* data, unsigned int size) { if(MwFLFontLoad) - return MwFLFontLoad(data, size, 16); + return MwFLFontLoad(data, size, 14); return NULL; }