From 6a49f3a83e2a2ac9663a391938d01bc35937ae14 Mon Sep 17 00:00:00 2001 From: notmatthewbeshay <92357869+NotMachow@users.noreply.github.com> Date: Sat, 14 Mar 2026 23:28:41 +1100 Subject: [PATCH 1/2] Fix broken renderDebug block in run_middle --- Minecraft.Client/Minecraft.cpp | 4 ---- 1 file changed, 4 deletions(-) diff --git a/Minecraft.Client/Minecraft.cpp b/Minecraft.Client/Minecraft.cpp index 1da02748b..939e04509 100644 --- a/Minecraft.Client/Minecraft.cpp +++ b/Minecraft.Client/Minecraft.cpp @@ -2039,10 +2039,6 @@ void Minecraft::run_middle() { } */ - if (options->renderDebug) - { - //renderFpsMeter(tickDuraction); - /* 4J - removed if (!Display::isActive()) { From b0a39d7a3a5d4fbd1464affcd36fc89cd1affb61 Mon Sep 17 00:00:00 2001 From: notmatthewbeshay <92357869+NotMachow@users.noreply.github.com> Date: Sun, 15 Mar 2026 00:53:22 +1100 Subject: [PATCH 2/2] Clear GDraw ID buffer before Linux intro UI --- Minecraft.Client/Platform/Linux/Linux_UIController.cpp | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/Minecraft.Client/Platform/Linux/Linux_UIController.cpp b/Minecraft.Client/Platform/Linux/Linux_UIController.cpp index 19c856dfe..4a3080b59 100644 --- a/Minecraft.Client/Platform/Linux/Linux_UIController.cpp +++ b/Minecraft.Client/Platform/Linux/Linux_UIController.cpp @@ -41,6 +41,9 @@ void ConsoleUIController::render() { if (!gdraw_funcs) return; gdraw_GL_SetTileOrigin(0, 0, 0); + if (!app.GetGameStarted() && gdraw_funcs->ClearID) { + gdraw_funcs->ClearID(); + } // render renderScenes(); @@ -109,4 +112,4 @@ void ConsoleUIController::shutdown() { gdraw_funcs = nullptr; } #endif -} \ No newline at end of file +}