Browse Source

Moved display closing to after GL terminate.

Camilla Berglund 13 years ago
parent
commit
1d6d6bc3c6
1 changed files with 2 additions and 2 deletions
  1. 2 2
      src/x11_init.c

+ 2 - 2
src/x11_init.c

@@ -672,12 +672,12 @@ int _glfwPlatformTerminate(void)
 
     _glfwTerminateGammaRamp();
 
-    terminateDisplay();
-
     _glfwTerminateJoysticks();
 
     _glfwTerminateOpenGL();
 
+    terminateDisplay();
+
     // Free clipboard memory
     if (_glfwLibrary.X11.selection.string)
         free(_glfwLibrary.X11.selection.string);