From 090cc653cceaae9e1cd12b9911f4d9b6f1906f3f Mon Sep 17 00:00:00 2001 From: Loki Rautio Date: Thu, 5 Mar 2026 20:32:04 -0600 Subject: Disable "Debug Settings" in Release builds People keep breaking random stuff by using these settings, so turn them off for now in release builds. If folks can figure out how to compile a debug build locally, they can use em :) --- Minecraft.Client/Common/UI/UIScene_HelpAndOptionsMenu.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Minecraft.Client/Common/UI/UIScene_HelpAndOptionsMenu.cpp') diff --git a/Minecraft.Client/Common/UI/UIScene_HelpAndOptionsMenu.cpp b/Minecraft.Client/Common/UI/UIScene_HelpAndOptionsMenu.cpp index a0d63172..d442553f 100644 --- a/Minecraft.Client/Common/UI/UIScene_HelpAndOptionsMenu.cpp +++ b/Minecraft.Client/Common/UI/UIScene_HelpAndOptionsMenu.cpp @@ -23,7 +23,7 @@ UIScene_HelpAndOptionsMenu::UIScene_HelpAndOptionsMenu(int iPad, void *initData, // We don't have a reinstall content, so remove the button removeControl( &m_buttons[BUTTON_HAO_REINSTALL], false ); -#ifdef _FINAL_BUILD +#ifndef _DEBUG removeControl( &m_buttons[BUTTON_HAO_DEBUG], false); #else if(!app.DebugSettingsOn()) removeControl( &m_buttons[BUTTON_HAO_DEBUG], false); -- cgit v1.2.3