From ed2a20dab7f830edc1ac7f5df5469aaa86949e64 Mon Sep 17 00:00:00 2001 From: Loki Rautio Date: Fri, 6 Mar 2026 13:08:09 -0600 Subject: [PATCH] Disable DPad Cheat Overrides on Release builds These cheats conflict with normal DPad behavior so they should be disabled. If we want to reintroduce these, we'll need to find a better set of triggers (and ideally respect server cheat settings) for allowing their use --- Minecraft.Client/Minecraft.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Minecraft.Client/Minecraft.cpp b/Minecraft.Client/Minecraft.cpp index ba82e919..e7761965 100644 --- a/Minecraft.Client/Minecraft.cpp +++ b/Minecraft.Client/Minecraft.cpp @@ -3651,7 +3651,7 @@ void Minecraft::tick(bool bFirst, bool bUpdateTextures) if (player->missTime > 0) player->missTime--; -#ifdef _DEBUG_MENUS_ENABLED +#ifdef _DEBUG//_MENUS_ENABLED // disable DPad cheats on release builds if(app.DebugSettingsOn()) { #ifndef __PSVITA__