1
0
forked from 0ad/0ad

Fixed one more memory leak

This was SVN commit r683.
This commit is contained in:
Ykkrosh 2004-07-10 14:14:36 +00:00
parent 7db0a92bfd
commit 77fbf1ab6d

View File

@ -52,6 +52,8 @@
#include "gui/GUI.h"
#endif
#include "NPFontManager.h"
CConsole* g_Console = 0;
extern int conInputHandler(const SDL_Event* ev);
@ -414,8 +416,6 @@ static void Render()
glDisable(GL_CULL_FACE);
glBlendFunc(GL_SRC_ALPHA, GL_ONE_MINUS_SRC_ALPHA);
glEnable(GL_BLEND);
glAlphaFunc(GL_GREATER, 0.5);
glEnable(GL_ALPHA_TEST);
glMatrixMode(GL_PROJECTION);
glPushMatrix();
glLoadIdentity();
@ -597,7 +597,6 @@ static void psInit()
#endif
}
static void psShutdown()
{
#ifndef NO_GUI
@ -615,6 +614,9 @@ extern u64 PREVTSC;
int main(int argc, char* argv[])
{
// If you ever want to catch a particular allocation:
//_CrtSetBreakAlloc(4128);
#ifdef _MSC_VER
u64 TSC=rdtsc();
debug_out(
@ -914,6 +916,10 @@ PREVTSC=CURTSC;
delete &g_ConfigDB;
// Not particularly consistent with all the other singletons,
// but the GUI currently uses it and so it needs to be unloaded
NPFontManager::release();
exit(0);
return 0;
}