diff options
author | Sven Gothel <[email protected]> | 2010-11-23 05:07:51 +0100 |
---|---|---|
committer | Sven Gothel <[email protected]> | 2010-11-23 05:07:51 +0100 |
commit | ae1ca3f2cae849f5e5a44538284082e861a98de1 (patch) | |
tree | 65c3c820ae0c744bc1f60393d41ffec6984a786d /src/demos/es1 | |
parent | a6076ff25bd3abd2d1e12f77dfde3f255ac67e7d (diff) |
Adapt to JOGL 7262641429b542929efc699e392f410f1dee2187
Diffstat (limited to 'src/demos/es1')
-rwxr-xr-x | src/demos/es1/RedSquare.java | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/demos/es1/RedSquare.java b/src/demos/es1/RedSquare.java index 4c3d299..a0faf9b 100755 --- a/src/demos/es1/RedSquare.java +++ b/src/demos/es1/RedSquare.java @@ -173,10 +173,10 @@ public class RedSquare extends Thread implements WindowListener, KeyListener, Mo try { System.out.println("SHUTDOWN "+Thread.currentThread()+" START"); // Shut things down cooperatively - window.destroy(true); + window.destroy(); window = null; if(null!=nWindow) { - nWindow.destroy(true); + nWindow.destroy(); nWindow=null; } System.out.println("SHUTDOWN "+Thread.currentThread()+" FIN"); |