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