From 6b5c14cdd960e131dc00bfcf7e8e15fae9b26b7f Mon Sep 17 00:00:00 2001 From: James Seibel Date: Fri, 15 Jul 2022 07:17:12 -0500 Subject: [PATCH] fix a typo --- src/main/java/com/seibel/lod/core/render/GLProxy.java | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/main/java/com/seibel/lod/core/render/GLProxy.java b/src/main/java/com/seibel/lod/core/render/GLProxy.java index f0676de3c..c12789057 100644 --- a/src/main/java/com/seibel/lod/core/render/GLProxy.java +++ b/src/main/java/com/seibel/lod/core/render/GLProxy.java @@ -62,11 +62,11 @@ import com.seibel.lod.core.wrapperInterfaces.minecraft.IMinecraftClientWrapper; * https://stackoverflow.com/questions/63509735/massive-performance-loss-with-glmapbuffer

* * @author James Seibel - * @version 12-9-2021 + * @version 2022-7-15 */ public class GLProxy { - public static final boolean OVERWIDE_VANILLA_GL_LOGGER = ModInfo.IS_DEV_BUILD; + public static final boolean OVERRIDE_VANILLA_GL_LOGGER = ModInfo.IS_DEV_BUILD; private static final IMinecraftClientWrapper MC = SingletonHandler.get(IMinecraftClientWrapper.class); @@ -237,7 +237,7 @@ public class GLProxy } GL_LOGGER.info("minecraftGlCapabilities:\n"+getVersionInfo(minecraftGlCapabilities)); - if (OVERWIDE_VANILLA_GL_LOGGER) + if (OVERRIDE_VANILLA_GL_LOGGER) GLUtil.setupDebugMessageCallback(new PrintStream(new GLMessageOutputStream(GLProxy::logMessage, vanillaDebugMessageBuilder), true)); GLFW.glfwMakeContextCurrent(0L);