From 587e7b299b1d39bc5139a3678cecce0f91381605 Mon Sep 17 00:00:00 2001 From: PilzAdam Date: Thu, 16 May 2013 02:19:32 +0200 Subject: [PATCH] Dont drop fonts with ENABLE_FREETYPE=0 --- src/guiChatConsole.cpp | 4 +++- src/main.cpp | 4 +++- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/src/guiChatConsole.cpp b/src/guiChatConsole.cpp index f31e599d..3dfd0090 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 7f9ec1ac..d28ba9b9 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