From 7fb2db5ed7a78be7a66e6267f1998ddcd5c0d135 Mon Sep 17 00:00:00 2001 From: str1k3r <115313679+S1l3ntStr1ke87@users.noreply.github.com> Date: Sun, 9 Aug 2026 22:45:13 -0400 Subject: [PATCH] fix: SD3 lib being copied & update paths --- Minecraft.Client/Common/Buildsteps/Windows64-postbuild.ps1 | 2 +- Minecraft.Client/Common/Consoles_App.cpp | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/Minecraft.Client/Common/Buildsteps/Windows64-postbuild.ps1 b/Minecraft.Client/Common/Buildsteps/Windows64-postbuild.ps1 index f96e7177..77a84ad2 100644 --- a/Minecraft.Client/Common/Buildsteps/Windows64-postbuild.ps1 +++ b/Minecraft.Client/Common/Buildsteps/Windows64-postbuild.ps1 @@ -39,7 +39,7 @@ foreach ($copy in $folderCopies) { } $fileCopies = @( - @{ Source = Join-Path $ProjectDir "Windows64\4JLibs\4J_Input\Windows64\vendor\SDL\lib\x64\SDL3.lib"; Dest = "SDL3.dll" }, + @{ Source = Join-Path $ProjectDir "Windows64\4JLibs\4J_Input\Windows64\vendor\SDL\lib\x64\SDL3.dll"; Dest = "SDL3.dll" }, @{ Source = Join-Path $PSScriptRoot "Contents\Windows64\iggy_w64.dll"; Dest = "iggy_w64.dll" }, @{ Source = Join-Path $PSScriptRoot "Contents\Windows64\mss64.dll"; Dest = "mss64.dll" } ) diff --git a/Minecraft.Client/Common/Consoles_App.cpp b/Minecraft.Client/Common/Consoles_App.cpp index 4308ecbd..5724e19e 100644 --- a/Minecraft.Client/Common/Consoles_App.cpp +++ b/Minecraft.Client/Common/Consoles_App.cpp @@ -10034,11 +10034,11 @@ enum ETitleUpdateTexturePacks #ifdef _WINDOWS64 wstring titleUpdateTexturePackRoot = L"Windows64\\DLC\\"; #elif defined(__ORBIS__) -wstring titleUpdateTexturePackRoot = L"/app0/orbis/CU/DLC/"; +wstring titleUpdateTexturePackRoot = L"app0/Orbis/DLC/"; #elif defined(__PSVITA__) -wstring titleUpdateTexturePackRoot = L"PSVita/CU/DLC/"; +wstring titleUpdateTexturePackRoot = L"PSVita/DLC/"; #elif defined(__PS3__) -wstring titleUpdateTexturePackRoot = L"PS3/CU/DLC/"; +wstring titleUpdateTexturePackRoot = L"PS3/DLC/"; #else wstring titleUpdateTexturePackRoot = L"CU\\DLC\\"; #endif