Add SDL3 3.1.1-preview

This commit is contained in:
Mark Jansen
2024-03-30 18:51:35 +01:00
parent 2c854305d7
commit 1a1a8f6cb3
1774 changed files with 811659 additions and 0 deletions
@@ -0,0 +1,15 @@
#!/bin/sh
if [ "$SED" = "" ]; then
if type gsed >/dev/null; then
SED=gsed
else
SED=sed
fi
fi
find . -type f \
| grep -v \.git \
| while read file; do \
LC_ALL=C $SED -b -i "s/\(.*Copyright.*\)[0-9]\{4\}\( *Sam Lantinga\)/\1`date +%Y`\2/" "$file"; \
done