From 7a53073fa1cb87509d73f12010ef845036ca0b6b Mon Sep 17 00:00:00 2001 From: SerpentSpirale Date: Sun, 8 Aug 2021 14:45:14 +0200 Subject: [PATCH] Revert "FPS limiter :)" This reverts commit 1313119049e30540b9395c147c8afa66907ac1ac. --- jre_lwjgl3glfw/src/main/java/org/lwjgl/glfw/GLFW.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/jre_lwjgl3glfw/src/main/java/org/lwjgl/glfw/GLFW.java b/jre_lwjgl3glfw/src/main/java/org/lwjgl/glfw/GLFW.java index baadeffaf..41f537102 100644 --- a/jre_lwjgl3glfw/src/main/java/org/lwjgl/glfw/GLFW.java +++ b/jre_lwjgl3glfw/src/main/java/org/lwjgl/glfw/GLFW.java @@ -1166,12 +1166,12 @@ public class GLFW public static void glfwWaitEventsTimeout(double timeout) { // Boardwalk: this isn't how you do a frame limiter, but oh well // System.out.println("Frame limiter"); - + /* try { Thread.sleep((long)(timeout * 1000)); } catch (InterruptedException ie) { } - + */ // System.out.println("Out of the frame limiter"); }