diff options
author | PilzAdam <pilzadam@minetest.net> | 2013-05-16 02:19:32 +0200 |
---|---|---|
committer | PilzAdam <pilzadam@minetest.net> | 2013-05-16 02:20:10 +0200 |
commit | 587e7b299b1d39bc5139a3678cecce0f91381605 (patch) | |
tree | b9300f652ff84070a9197b25996fe2f9cf00421c | |
parent | d5ca3b721e049fc4f59718a55c932a06533d4b3c (diff) | |
download | minetest-587e7b299b1d39bc5139a3678cecce0f91381605.tar.gz minetest-587e7b299b1d39bc5139a3678cecce0f91381605.tar.bz2 minetest-587e7b299b1d39bc5139a3678cecce0f91381605.zip |
Dont drop fonts with ENABLE_FREETYPE=0
-rw-r--r-- | src/guiChatConsole.cpp | 4 | ||||
-rw-r--r-- | src/main.cpp | 4 |
2 files changed, 6 insertions, 2 deletions
diff --git a/src/guiChatConsole.cpp b/src/guiChatConsole.cpp index f31e599dc..3dfd0090a 100644 --- a/src/guiChatConsole.cpp +++ b/src/guiChatConsole.cpp @@ -121,7 +121,9 @@ GUIChatConsole::GUIChatConsole( GUIChatConsole::~GUIChatConsole() { - delete m_font; +#if USE_FREETYPE + m_font->drop(); +#endif } void GUIChatConsole::openConsole(f32 height) diff --git a/src/main.cpp b/src/main.cpp index 7f9ec1ace..d28ba9b9d 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -2145,7 +2145,9 @@ int main(int argc, char *argv[]) */ device->drop(); - delete font; +#if USE_FREETYPE + font->drop(); +#endif #endif // !SERVER |