Fix a memory leak which resulted from neglecting to call SDL_Quit()

git-svn-id: svn+ssh://svn.gna.org/svn/warzone/trunk@5964 4a71c877-e1ca-e34f-864e-861f7616d084
master
Giel van Schijndel 2008-09-07 23:51:21 +00:00
parent b033817fc4
commit 75b4e523bd
1 changed files with 1 additions and 0 deletions

View File

@ -142,6 +142,7 @@ int main(int argc, char *argv[])
}
widgetSDLQuit();
SDL_Quit();
return EXIT_SUCCESS;
}