diff --git a/CI/before_script.msvc.sh b/CI/before_script.msvc.sh index 3affcc9089..f46963b75d 100644 --- a/CI/before_script.msvc.sh +++ b/CI/before_script.msvc.sh @@ -629,8 +629,8 @@ if [ -z $SKIP_DOWNLOAD ]; then # SDL2 download "SDL 2.24.0" \ - "https://gitlab.com/OpenMW/openmw-deps/-/raw/main/windows/SDL2-2.24.0-win32-x64.zip" \ - "SDL2-2.24.0-win32-x64.zip" + "https://gitlab.com/OpenMW/openmw-deps/-/raw/main/windows/SDL2-devel-2.24.0-VC.zip" \ + "SDL2-devel-2.24.0-VC.zip" # LZ4 download "LZ4 1.9.2" \ @@ -951,10 +951,11 @@ printf "SDL 2.24.0... " printf "Exists. " elif [ -z $SKIP_EXTRACT ]; then rm -rf SDL2-2.24.0 - eval 7z x -y SDL2-2.24.0-win32-x64.zip -oSDL2-2.24.0 $STRIP + eval 7z x -y SDL2-devel-2.24.0-VC.zip $STRIP fi + export SDL2DIR="$(real_pwd)/SDL2-2.24.0" for config in ${CONFIGURATIONS[@]}; do - add_runtime_dlls $config "$(pwd)/SDL2-2.24.0/SDL2.dll" + add_runtime_dlls $config "$(pwd)/SDL2-2.24.0/lib/x${ARCHSUFFIX}/SDL2.dll" done echo Done. }