better size
All checks were successful
pyrite-dev/milsko/pipeline/head This commit looks good

This commit is contained in:
Nishi 2026-04-06 23:28:32 +09:00
commit 5d8e39b268
Signed by: nishi
GPG key ID: 27EF69B208EB9343
2 changed files with 3 additions and 1 deletions

2
.gitignore vendored
View file

@ -7,6 +7,8 @@ examples/*/*.exe
!examples/*/*.*
*.exe
*.o
*.obj
*.core
*.so
*.dll
*.lib

View file

@ -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;
}