diff --git a/src/guiChatConsole.cpp b/src/guiChatConsole.cpp
index f31e599dc7eeb6f017a4d3c567e4346eb3d4acfa..3dfd0090a6c6b224898b06ed678ec41269f33eb8 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 7f9ec1ace13385a808787888e3946e559207d493..d28ba9b9dbcddb3e041288406b25e72b9016f2fb 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