Fix Graphics Mode Debug Information

This commit is contained in:
Finn Rades 2024-08-14 14:10:21 +02:00
parent a92c08b1e1
commit fb14ee0278

View File

@ -78,7 +78,7 @@ public class DebugInformation {
.put("Flywheel Backend", () -> Backend.getBackendType().toString())
.put("OpenGL Renderer", GlUtil::getRenderer)
.put("OpenGL Version", GlUtil::getOpenGLVersion)
.put("Graphics Mode", () -> Minecraft.getInstance().options.graphicsMode.toString())
.put("Graphics Mode", () -> Minecraft.getInstance().options.graphicsMode.getKey().toString())
.buildTo(DebugInformation::registerClientInfo);
});