|
From: Elias N. <eli...@us...> - 2005-03-31 09:32:14
|
Update of /cvsroot/java-game-lib/LWJGL/src/java/org/lwjgl/opengl In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv10691/src/java/org/lwjgl/opengl Modified Files: LinuxDisplayPeerInfo.java Log Message: Linux: Fix crash on exit on NVIDIA Index: LinuxDisplayPeerInfo.java =================================================================== RCS file: /cvsroot/java-game-lib/LWJGL/src/java/org/lwjgl/opengl/LinuxDisplayPeerInfo.java,v retrieving revision 1.4 retrieving revision 1.5 diff -u -d -r1.4 -r1.5 --- LinuxDisplayPeerInfo.java 29 Mar 2005 11:31:22 -0000 1.4 +++ LinuxDisplayPeerInfo.java 31 Mar 2005 09:32:04 -0000 1.5 @@ -83,8 +83,8 @@ public void destroy() { super.destroy(); LinuxDisplay.lockAWT(); - GLContext.unloadOpenGLLibrary(); LinuxDisplay.decDisplay(); + GLContext.unloadOpenGLLibrary(); LinuxDisplay.unlockAWT(); } } |