From ad62c603da0e605abef2484ac2edc3d95bfa4e63 Mon Sep 17 00:00:00 2001 From: str1k3r <115313679+S1l3ntStr1ke87@users.noreply.github.com> Date: Sun, 16 Aug 2026 01:31:58 -0400 Subject: [PATCH] fix(X360): Contentpackage not booting --- Minecraft.Client/Minecraft.Client.vcxproj | 2 +- Minecraft.Client/Xbox/xex.xml | 14 ++++++++++---- Minecraft.Client/stdafx.h | 5 +++-- Minecraft.World/Minecraft.World.vcxproj | 2 +- Minecraft.World/stdafx.h | 5 +++-- 5 files changed, 18 insertions(+), 10 deletions(-) diff --git a/Minecraft.Client/Minecraft.Client.vcxproj b/Minecraft.Client/Minecraft.Client.vcxproj index dfd69250..db1e9a43 100644 --- a/Minecraft.Client/Minecraft.Client.vcxproj +++ b/Minecraft.Client/Minecraft.Client.vcxproj @@ -1144,7 +1144,7 @@ xcopy /q /y /i /s /e $(ProjectDir)DurangoMedia\CU $(LayoutDir)Image\Loose\CUfalse $(OutDir)$(ProjectName).pch MultiThreaded - _TU_BUILD;_FINAL_BUILD;_ITERATOR_DEBUG_LEVEL=0;NDEBUG;_XBOX;_CONTENT_PACKAGE;%(PreprocessorDefinitions); + _FINAL_BUILD;_ITERATOR_DEBUG_LEVEL=0;NDEBUG;_XBOX;_CONTENT_PACKAGE;%(PreprocessorDefinitions); true true Disabled diff --git a/Minecraft.Client/Xbox/xex.xml b/Minecraft.Client/Xbox/xex.xml index 08211234..a49b22a3 100644 --- a/Minecraft.Client/Xbox/xex.xml +++ b/Minecraft.Client/Xbox/xex.xml @@ -1,11 +1,17 @@ - + + + + + + + - - - + + + diff --git a/Minecraft.Client/stdafx.h b/Minecraft.Client/stdafx.h index d358bf2c..ffd9cee6 100644 --- a/Minecraft.Client/stdafx.h +++ b/Minecraft.Client/stdafx.h @@ -339,8 +339,8 @@ typedef XUID GameSessionUID; #endif - -#if defined(_FINAL_BUILD) && !defined(_WINDOWS64) +#if !defined(_WINDOWS64) +#if defined(_FINAL_BUILD) #define printf BREAKTHECOMPILE #define wprintf BREAKTHECOMPILE #undef OutputDebugString @@ -348,5 +348,6 @@ typedef XUID GameSessionUID; #define OutputDebugStringA BREAKTHECOMPILE #define OutputDebugStringW BREAKTHECOMPILE #endif +#endif void MemSect(int sect); diff --git a/Minecraft.World/Minecraft.World.vcxproj b/Minecraft.World/Minecraft.World.vcxproj index fa4b876e..74e4a167 100644 --- a/Minecraft.World/Minecraft.World.vcxproj +++ b/Minecraft.World/Minecraft.World.vcxproj @@ -923,7 +923,7 @@ false $(OutDir)$(ProjectName).pch MultiThreaded - _TU_BUILD;_FINAL_BUILD;NDEBUG;_XBOX;_LIB;_CONTENT_PACKAGE;%(PreprocessorDefinitions) + _FINAL_BUILD;_ITERATOR_DEBUG_LEVEL=0;NDEBUG;_XBOX;_CONTENT_PACKAGE;%(PreprocessorDefinitions); true Default true diff --git a/Minecraft.World/stdafx.h b/Minecraft.World/stdafx.h index 93c5cfa0..181e9663 100644 --- a/Minecraft.World/stdafx.h +++ b/Minecraft.World/stdafx.h @@ -134,8 +134,8 @@ typedef XUID GameSessionUID; #include "compression.h" #include "PerformanceTimer.h" - -#if defined(_FINAL_BUILD) && !defined(_WINDOWS64) +#if !defined(_WINDOWS64) +#if defined(_FINAL_BUILD) #define printf BREAKTHECOMPILE #define wprintf BREAKTHECOMPILE #undef OutputDebugString @@ -143,6 +143,7 @@ typedef XUID GameSessionUID; #define OutputDebugStringA BREAKTHECOMPILE #define OutputDebugStringW BREAKTHECOMPILE #endif +#endif void MemSect(int sect);