From 80f0e4845a92b87ebc8c5dfc91e47870047e1fc7 Mon Sep 17 00:00:00 2001 From: str1k3r <115313679+S1l3ntStr1ke87@users.noreply.github.com> Date: Sat, 18 Jul 2026 10:39:16 -0400 Subject: [PATCH] fix(PSVita): postbuild copying sounds into wrong spot --- Minecraft.Client/Common/Postbuilds/PSVita-postbuild.ps1 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Minecraft.Client/Common/Postbuilds/PSVita-postbuild.ps1 b/Minecraft.Client/Common/Postbuilds/PSVita-postbuild.ps1 index e43ed05b..9a1d960a 100644 --- a/Minecraft.Client/Common/Postbuilds/PSVita-postbuild.ps1 +++ b/Minecraft.Client/Common/Postbuilds/PSVita-postbuild.ps1 @@ -22,7 +22,7 @@ $folderCopies = @( @{ Source = "music"; Dest = "PSVITA_GAME\music" }, @{ Source = "Common\Media"; Dest = "PSVITA_GAME\Common\Media" }, @{ Source = "Common\res"; Dest = "PSVITA_GAME\Common\res" }, - @{ Source = "PSVita\Sound"; Dest = "PSVITA_GAME\Sound" }, + @{ Source = "PSVita\Sound"; Dest = "PSVITA_GAME\PSVita\Sound" }, @{ Source = "$env:SCE_PSP2_SDK_DIR\target\sce_module"; Dest = "PSVITA_GAME\sce_module" }, @{ Source = "Common\Postbuilds\Contents\PSVita\sce_sys"; Dest = "PSVITA_GAME\sce_sys" } )