mirror of
https://github.com/shadowfacts/lwjgl2-arm64.git
synced 2026-04-07 07:24:20 +00:00
Windows: Moved NativeSysImplementation.java to WindowsSysImplementation.java and moved some native code to java.
This commit is contained in:
parent
008c59a301
commit
d9afe6b784
6 changed files with 32 additions and 133 deletions
|
|
@ -57,7 +57,7 @@ public final class Sys {
|
|||
private static final String VERSION = "1.0beta2";
|
||||
|
||||
/** Current version of the JNI library */
|
||||
static final int JNI_VERSION = 2;
|
||||
static final int JNI_VERSION = 3;
|
||||
|
||||
/** The implementation instance to delegate platform specific behavior to */
|
||||
private final static SysImplementation implementation;
|
||||
|
|
@ -114,7 +114,7 @@ public final class Sys {
|
|||
class_name = "org.lwjgl.LinuxSysImplementation";
|
||||
break;
|
||||
case LWJGLUtil.PLATFORM_WINDOWS:
|
||||
class_name = "org.lwjgl.Win32SysImplementation";
|
||||
class_name = "org.lwjgl.WindowsSysImplementation";
|
||||
break;
|
||||
case LWJGLUtil.PLATFORM_MACOSX:
|
||||
class_name = "org.lwjgl.MacOSXSysImplementation";
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue