From 97fc33ffa6f92cfab7308b7f6cd08a9c46ecdef5 Mon Sep 17 00:00:00 2001 From: Duy Tran Khanh <40482367+khanhduytran0@users.noreply.github.com> Date: Mon, 8 Nov 2021 14:54:09 +0700 Subject: [PATCH] Fixes wrong function name pojavSwapInternal -> pojavSwapInterval --- jre_lwjgl3glfw/src/main/java/org/lwjgl/glfw/GLFW.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 a6b883c3d..da45dfbd9 100644 --- a/jre_lwjgl3glfw/src/main/java/org/lwjgl/glfw/GLFW.java +++ b/jre_lwjgl3glfw/src/main/java/org/lwjgl/glfw/GLFW.java @@ -614,7 +614,7 @@ public class GLFW MakeContextCurrent = apiGetFunctionAddress(GLFW, "pojavMakeCurrent"), Terminate = apiGetFunctionAddress(GLFW, "pojavTerminate"), SwapBuffers = apiGetFunctionAddress(GLFW, "pojavSwapBuffers"), - SwapInterval = apiGetFunctionAddress(GLFW, "pojavSwapInternal"); + SwapInterval = apiGetFunctionAddress(GLFW, "pojavSwapInterval"); } public static SharedLibrary getLibrary() {