We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4d00f34 commit a58ff6fCopy full SHA for a58ff6f
imgui-lwjgl3/src/test/java/ImGuiGlfwExample.java
@@ -50,7 +50,7 @@ public final class ImGuiGlfwExample {
50
private final double[] mousePosY = new double[1];
51
52
// Mouse cursors provided by GLFW
53
- private final long[] mouseCursors = new long[ImGuiMouseCursor.COUNT];
+ private final long[] mouseCursors = new long[ImGuiMouseCursor.COUNT - 1]; // Minus 1, because GLFW 3.4 doesn't provide GLFW_NOT_ALLOWED_CURSOR
54
55
// LWJGL3 rendered itself (SHOULD be initialized)
56
private final ImGuiImplGl3 imGuiGl3 = new ImGuiImplGl3();
0 commit comments