From 90a2391e926d651c902a904f1775976ec00e9aed Mon Sep 17 00:00:00 2001 From: str1k3r <115313679+S1l3ntStr1ke87@users.noreply.github.com> Date: Sun, 9 Aug 2026 10:58:07 -0400 Subject: [PATCH] fix: SDL3 dll not being copied --- Minecraft.Client/Common/Buildsteps/Windows64-postbuild.ps1 | 1 + 1 file changed, 1 insertion(+) diff --git a/Minecraft.Client/Common/Buildsteps/Windows64-postbuild.ps1 b/Minecraft.Client/Common/Buildsteps/Windows64-postbuild.ps1 index fbac46ce..f96e7177 100644 --- a/Minecraft.Client/Common/Buildsteps/Windows64-postbuild.ps1 +++ b/Minecraft.Client/Common/Buildsteps/Windows64-postbuild.ps1 @@ -39,6 +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 $PSScriptRoot "Contents\Windows64\iggy_w64.dll"; Dest = "iggy_w64.dll" }, @{ Source = Join-Path $PSScriptRoot "Contents\Windows64\mss64.dll"; Dest = "mss64.dll" } )