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 +}