*** empty log message ***

This commit is contained in:
Caspian Rychlik-Prince 2003-12-20 22:17:52 +00:00
parent 615bdfb113
commit 3d1f4c8a52
1 changed files with 1 additions and 6 deletions

View File

@ -82,14 +82,9 @@ public final class Sys {
/** /**
* Debug flag. * Debug flag.
*/ */
public static final boolean DEBUG; public static final boolean DEBUG = Boolean.getBoolean("org.lwjgl.Sys.debug");
static { static {
String debug_level_prop = System.getProperty("org.lwjgl.Sys.debug", "false");
if (debug_level_prop.equals("true"))
DEBUG = true;
else
DEBUG = false;
initialize(); initialize();
} }