aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--backends/sdl/sdl-common.cpp8
1 files changed, 8 insertions, 0 deletions
diff --git a/backends/sdl/sdl-common.cpp b/backends/sdl/sdl-common.cpp
index 00e695ac2d..1095d4b68f 100644
--- a/backends/sdl/sdl-common.cpp
+++ b/backends/sdl/sdl-common.cpp
@@ -115,7 +115,11 @@ OSystem_SDL_Common::~OSystem_SDL_Common() {
SDL_DestroyMutex(_mutex);
SDL_ShowCursor(SDL_ENABLE);
+#ifdef MACOSX
+ // Work around segfault-on-exit with the OpenGL backend on Mac OS X.
+#else
SDL_Quit();
+#endif
}
void OSystem_SDL_Common::init_size(uint w, uint h) {
@@ -909,7 +913,11 @@ void OSystem_SDL_Common::quit() {
unload_gfx_mode();
SDL_ShowCursor(SDL_ENABLE);
+#ifdef MACOSX
+ // Work around segfault-on-exit with the OpenGL backend on Mac OS X.
+#else
SDL_Quit();
+#endif
exit(0);
}