Don't call nGetNULLValue before loading the library

This commit is contained in:
Elias Naur 2003-04-03 21:02:23 +00:00
parent 36e4c9625a
commit 5da72080f0
1 changed files with 1 additions and 1 deletions

View File

@ -91,7 +91,6 @@ public final class Sys {
private static boolean _debug; private static boolean _debug;
static { static {
NULL = nGetNULLValue();
try { try {
assert false; assert false;
LIBRARY_NAME = "lwjgl"; LIBRARY_NAME = "lwjgl";
@ -104,6 +103,7 @@ public final class Sys {
} finally { } finally {
DEBUG = _debug; DEBUG = _debug;
initialize(); initialize();
NULL = nGetNULLValue();
} }
} }