From b1d583721fc13b32f3efe6e0b882ec448c793694 Mon Sep 17 00:00:00 2001 From: str1k3r <115313679+S1l3ntStr1ke87@users.noreply.github.com> Date: Sat, 15 Aug 2026 21:15:39 -0400 Subject: [PATCH] fix: console compiling --- Minecraft.Client/Common/Consoles_App.cpp | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/Minecraft.Client/Common/Consoles_App.cpp b/Minecraft.Client/Common/Consoles_App.cpp index 768c8de4..09b63c95 100644 --- a/Minecraft.Client/Common/Consoles_App.cpp +++ b/Minecraft.Client/Common/Consoles_App.cpp @@ -3841,7 +3841,11 @@ void CMinecraftApp::HandleXuiActions(void) break; case eAppAction_SetDefaultOptions: SetAction(i,eAppAction_Idle); - SetDefaultOptions((C_4JProfile::PROFILESETTINGS *)param,i); +#if ( defined __PS3__ || defined __ORBIS__ || defined _DURANGO || defined __PSVITA__) + SetDefaultOptions((C4JStorage::PROFILESETTINGS *)param,i); +#else + SetDefaultOptions((C_4JProfile::PROFILESETTINGS *)param,i); +#endif // if the profile data has been changed, then force a profile write // It seems we're allowed to break the 5 minute rule if it's the result of a user action