update SDL_mixer to SDL3_mixer 3.2.0

This commit is contained in:
Sven Balzer
2026-04-02 16:52:07 +02:00
parent 05b19704f8
commit 8a5caf5c0d
1202 changed files with 366156 additions and 152445 deletions
+23
View File
@@ -0,0 +1,23 @@
#!/bin/sh
set -e
ARGUMENTS="$*"
cd $(dirname "$0")/..
cat .gitmodules | \
while true; do
read module || break
read line; set -- $line
path=$3
read line; set -- $line
url=$3
read line; set -- $line
branch=$3
if [ -z "$ARGUMENTS" ]; then
ARGUMENTS="--depth 1"
fi
git clone --filter=blob:none $url $path -b $branch --recursive $ARGUMENTS
done