summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorpsi29a <psi29a@gmail.com>2022-07-05 17:44:22 +0000
committerpsi29a <psi29a@gmail.com>2022-07-05 17:44:22 +0000
commitf8f2e00ecaf25398653934b103087cd40b6f722a (patch)
tree7aa9c0902c61f1d934f2003e46b57f046f05942f
parent7470f6971d0802c96292e3731dad58b84e7b1dd8 (diff)
Fix mouse clicking with sdl2 2.0.22sdl2_point_22
-rw-r--r--CI/before_script.msvc.sh18
1 files changed, 9 insertions, 9 deletions
diff --git a/CI/before_script.msvc.sh b/CI/before_script.msvc.sh
index a2bc4bd9d3..e4c4c5620d 100644
--- a/CI/before_script.msvc.sh
+++ b/CI/before_script.msvc.sh
@@ -593,9 +593,9 @@ if [ -z $SKIP_DOWNLOAD ]; then
fi
# SDL2
- download "SDL 2.0.18" \
- "https://gitlab.com/OpenMW/openmw-deps/-/raw/main/windows/SDL2-2.0.18.zip" \
- "SDL2-2.0.18.zip"
+ download "SDL 2.0.22" \
+ "https://gitlab.com/OpenMW/openmw-deps/-/raw/main/windows/SDL2-2.0.22.zip" \
+ "SDL2-2.0.22.zip"
# LZ4
download "LZ4 1.9.2" \
@@ -941,17 +941,17 @@ fi
cd $DEPS
echo
# SDL2
-printf "SDL 2.0.18... "
+printf "SDL 2.0.22... "
{
- if [ -d SDL2-2.0.18 ]; then
+ if [ -d SDL2-2.0.22 ]; then
printf "Exists. "
elif [ -z $SKIP_EXTRACT ]; then
- rm -rf SDL2-2.0.18
- eval 7z x -y SDL2-2.0.18.zip $STRIP
+ rm -rf SDL2-2.0.22
+ eval 7z x -y SDL2-2.0.22.zip $STRIP
fi
- export SDL2DIR="$(real_pwd)/SDL2-2.0.18"
+ export SDL2DIR="$(real_pwd)/SDL2-2.0.22"
for config in ${CONFIGURATIONS[@]}; do
- add_runtime_dlls $config "$(pwd)/SDL2-2.0.18/lib/x${ARCHSUFFIX}/SDL2.dll"
+ add_runtime_dlls $config "$(pwd)/SDL2-2.0.22/lib/x${ARCHSUFFIX}/SDL2.dll"
done
echo Done.
}