Run SDL_Quit before exiting

This commit is contained in:
Colin Kinloch 2025-05-02 20:52:56 +01:00 committed by tildearrow
parent 055266090a
commit 99e11f83b6

View file

@ -1104,5 +1104,10 @@ int main(int argc, char** argv) {
}
#endif
e.everythingOK();
#ifdef HAVE_SDL2
SDL_Quit();
#endif
return 0;
}