1
0
Fork 0
mirror of https://github.com/luanti-org/luanti.git synced 2025-06-27 16:36:03 +00:00

Make freetype usage configureable by a setting

This commit is contained in:
PilzAdam 2013-08-04 20:18:56 +02:00
parent 3fd84edb61
commit 2af5864534
8 changed files with 48 additions and 14 deletions

View file

@ -22,6 +22,7 @@ with this program; if not, write to the Free Software Foundation, Inc.,
#include "irrlichttypes_extrabloated.h"
#include "chat.h"
#include "config.h"
class Client;
@ -121,6 +122,9 @@ private:
// font
gui::IGUIFont* m_font;
v2u32 m_fontsize;
#if USE_FREETYPE
bool m_use_freetype;
#endif
};