Skip to content

Commit

Permalink
Test update queue size of mouse event
Browse files Browse the repository at this point in the history
  • Loading branch information
kappa-maintainer committed Oct 28, 2024
1 parent fb525b9 commit 7a41514
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/org/lwjgl/input/Mouse.java
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ public class Mouse {

private static int dx = 0, dy = 0, dwheel = 0;

private static EventQueue queue = new EventQueue(128);
private static EventQueue queue = new EventQueue(512);

private static int[] buttonEvents = new int[queue.getMaxEvents()];
private static boolean[] buttonEventStates = new boolean[queue.getMaxEvents()];
Expand Down

0 comments on commit 7a41514

Please sign in to comment.