fix: static method usage

This commit is contained in:
Brian Matzon 2003-08-02 20:52:49 +00:00
parent 4283f40244
commit 80cf5b1dcc
13 changed files with 53 additions and 47 deletions

View file

@ -29,8 +29,8 @@ public class WindowCreationTest {
System.out.println("Display created");
while(!gl.isCloseRequested()) {
gl.tick();
while(!Window.isCloseRequested()) {
Window.tick();
try {
Thread.sleep(100);
} catch (Exception e) {