update lwjgl

This commit is contained in:
ShirosakiMio 2024-01-13 19:07:20 +08:00
parent 3d899fef9d
commit b153473fc6
3 changed files with 4 additions and 3 deletions

View File

@ -1 +1 @@
1705142618589 1705143712736

View File

@ -155,8 +155,9 @@ public class KeyCodes {
// public static final int KEY_POWER = 0xDE; // public static final int KEY_POWER = 0xDE;
// public static final int KEY_SLEEP = 0xDF; // public static final int KEY_SLEEP = 0xDF;
default: System.out.println("UNKNOWN GLFW KEY CODE: " + glfwKeyCode); default:
return Keyboard.KEY_NONE; // System.out.println("UNKNOWN GLFW KEY CODE: " + glfwKeyCode);
return Keyboard.KEY_NONE;
} }
} }