From 6d50ac477192498ff2029484023111fb6c9b309f Mon Sep 17 00:00:00 2001 From: Sally Knight Date: Thu, 19 Mar 2026 14:57:06 +0300 Subject: [PATCH] feat(jui): add dirt background rendering to selectworldscreen --- Minecraft.Client/UI/Screens/SelectWorldScreen.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/Minecraft.Client/UI/Screens/SelectWorldScreen.cpp b/Minecraft.Client/UI/Screens/SelectWorldScreen.cpp index e98cef112..080966374 100644 --- a/Minecraft.Client/UI/Screens/SelectWorldScreen.cpp +++ b/Minecraft.Client/UI/Screens/SelectWorldScreen.cpp @@ -165,6 +165,7 @@ void SelectWorldScreen::confirmResult(bool result, int id) { void SelectWorldScreen::render(int xm, int ym, float a) { // fill(0, 0, width, height, 0x40000000); + renderDirtBackground(0); worldSelectionList->render(xm, ym, a); drawCenteredString(font, title, width / 2, 20, 0xffffff);