From 36b4e6929c86489379eb68cefcb5ee44b670fc26 Mon Sep 17 00:00:00 2001 From: psi29a Date: Sat, 24 Sep 2022 16:39:57 +0000 Subject: [PATCH] Update CI/before_script.msvc.sh --- CI/before_script.msvc.sh | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/CI/before_script.msvc.sh b/CI/before_script.msvc.sh index 68ca3ff391..b56dfa0225 100644 --- a/CI/before_script.msvc.sh +++ b/CI/before_script.msvc.sh @@ -628,9 +628,9 @@ if [ -z $SKIP_DOWNLOAD ]; then fi # SDL2 - download "SDL 2.0.24" \ - "https://gitlab.com/OpenMW/openmw-deps/-/raw/main/windows/SDL2-2.0.24.zip" \ - "SDL2-2.0.24.zip" + 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" # LZ4 download "LZ4 1.9.2" \ @@ -945,17 +945,17 @@ printf "Qt 5.15.2... " cd $DEPS echo # SDL2 -printf "SDL 2.0.24... " +printf "SDL 2.24.0... " { - if [ -d SDL2-2.0.24 ]; then + if [ -d SDL2-2.24.0 ]; then printf "Exists. " elif [ -z $SKIP_EXTRACT ]; then - rm -rf SDL2-2.0.24 - eval 7z x -y SDL2-2.0.24.zip $STRIP + rm -rf SDL2-2.24.0 + eval 7z x -y SDL2-2.24.0.zip -oSDL2-2.24.0 $STRIP fi - export SDL2DIR="$(real_pwd)/SDL2-2.0.24" + export SDL2DIR="$(real_pwd)/SDL2-2.24.0" for config in ${CONFIGURATIONS[@]}; do - add_runtime_dlls $config "$(pwd)/SDL2-2.0.24/lib/x${ARCHSUFFIX}/SDL2.dll" + add_runtime_dlls $config "$(pwd)/SDL2-2.24.0/SDL2.dll" done echo Done. }