From d88f31fda2603fb0d208d41c7da5777787f11786 Mon Sep 17 00:00:00 2001 From: ehofman Date: Sun, 15 Aug 2004 16:53:11 +0000 Subject: [PATCH] Show the mouse cursor again, just before exiting. This could prevent an X windows crash for certain harware setups. --- src/Main/main.cxx | 1 + 1 file changed, 1 insertion(+) diff --git a/src/Main/main.cxx b/src/Main/main.cxx index 57d58828a..2fccf1ea3 100644 --- a/src/Main/main.cxx +++ b/src/Main/main.cxx @@ -1507,6 +1507,7 @@ void fgReshape( int width, int height ) { // do some clean up on exit. Specifically we want to call alutExit() // which happens in the sound manager destructor. void fgExitCleanup() { + fgSetMouseCursor(MOUSE_CURSOR_POINTER); delete globals; // fgOSExit(0); } -- 2.39.5