moved Sys.log to LWJGLUtils and renamed property to org.lwjgl.util.Debug

This commit is contained in:
Brian Matzon 2005-03-29 18:09:33 +00:00
parent c9fc024fa4
commit ad8d7676c2
18 changed files with 89 additions and 83 deletions

View file

@ -38,6 +38,7 @@ import java.util.Map;
import org.lwjgl.BufferUtils;
import org.lwjgl.LWJGLException;
import org.lwjgl.LWJGLUtil;
import org.lwjgl.Sys;
import org.lwjgl.opengl.Display;
@ -526,7 +527,7 @@ public class Mouse {
try {
setNativeCursor(currentCursor);
} catch (LWJGLException e) {
if (Sys.DEBUG) e.printStackTrace();
if (LWJGLUtil.DEBUG) e.printStackTrace();
}
}
}