Remove excessive call

This commit is contained in:
artdeell 2022-05-09 23:10:44 +03:00
parent 61d12f4a34
commit dd63c7e242

View File

@ -1073,7 +1073,7 @@ public class GLFW
// Indirect event
while (singleton.pendingEventList.size() > 0) {
Integer[] dataArr = CallbackBridge.getSingleton().pendingEventList.remove(0);
Integer[] dataArr = singleton.pendingEventList.remove(0);
for (Long ptr : mGLFWWindowMap.keySet()) {
try {
switch (dataArr[0]) {