From db95951ade1e9378210d0d550c287b1ef326b6a8 Mon Sep 17 00:00:00 2001 From: James Seibel Date: Sat, 10 Jan 2026 08:20:44 -0600 Subject: [PATCH] minor reformat and comment --- .../distanthorizons/core/render/renderer/LodRenderer.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/core/src/main/java/com/seibel/distanthorizons/core/render/renderer/LodRenderer.java b/core/src/main/java/com/seibel/distanthorizons/core/render/renderer/LodRenderer.java index 0899f712b..3e389e41c 100644 --- a/core/src/main/java/com/seibel/distanthorizons/core/render/renderer/LodRenderer.java +++ b/core/src/main/java/com/seibel/distanthorizons/core/render/renderer/LodRenderer.java @@ -434,7 +434,7 @@ public class LodRenderer // resize the textures if needed if (MC_RENDER.getTargetFramebufferViewportWidth() != this.textureWidth - || MC_RENDER.getTargetFramebufferViewportHeight() != this.textureHeight) + || MC_RENDER.getTargetFramebufferViewportHeight() != this.textureHeight) { // just resizing the textures doesn't work when Optifine is present, // so recreate the textures with the new size instead @@ -536,7 +536,7 @@ public class LodRenderer return true; } - @SuppressWarnings( "deprecation" ) + @SuppressWarnings( "deprecation" ) // done to ignore DhApiColorDepthTextureCreatedEvent private void createAndBindTextures() { int oldWidth = this.textureWidth;