summaryrefslogtreecommitdiff
path: root/src/guiChatConsole.h
diff options
context:
space:
mode:
authorPilzAdam <pilzadam@minetest.net>2013-08-04 20:18:56 +0200
committerPilzAdam <pilzadam@minetest.net>2013-08-04 20:35:14 +0200
commit2af5864534c7615aeaff7e66c4dfb9618809c173 (patch)
tree2b429cd7b78ecb54484b50baf3990c5484b67d91 /src/guiChatConsole.h
parent3fd84edb615692cc26ea9528fb7b68387f6c471f (diff)
downloadminetest-2af5864534c7615aeaff7e66c4dfb9618809c173.tar.gz
minetest-2af5864534c7615aeaff7e66c4dfb9618809c173.tar.bz2
minetest-2af5864534c7615aeaff7e66c4dfb9618809c173.zip
Make freetype usage configureable by a setting
Diffstat (limited to 'src/guiChatConsole.h')
-rw-r--r--src/guiChatConsole.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/guiChatConsole.h b/src/guiChatConsole.h
index 5991157b2..2bf45fdf4 100644
--- a/src/guiChatConsole.h
+++ b/src/guiChatConsole.h
@@ -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
};