From 380b1729680c6b06fd968c709016eff0ebbe8fbf Mon Sep 17 00:00:00 2001 From: Bananymous Date: Sun, 5 Jul 2026 00:00:11 +0300 Subject: [PATCH] ports: Update butterscotch and use SDL3 --- ports/butterscotch/build.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/ports/butterscotch/build.sh b/ports/butterscotch/build.sh index 90779cf3..fe44eff6 100755 --- a/ports/butterscotch/build.sh +++ b/ports/butterscotch/build.sh @@ -2,8 +2,8 @@ NAME='butterscotch' VERSION='git' -DOWNLOAD_URL="https://github.com/ButterscotchRunner/Butterscotch.git#b95f61c1aa84d9dd4a7b589b2a3331ab28dfa2ea" -DEPENDENCIES=('SDL2' 'openal-soft') +DOWNLOAD_URL="https://github.com/ButterscotchRunner/Butterscotch.git#c40c17418a3aee6c75d3dcd71a5ce0c8eb258b8e" +DEPENDENCIES=('SDL3' 'openal-soft') configure() { cmake --fresh -B build -S . -G Ninja \ @@ -12,7 +12,7 @@ configure() { -DCMAKE_BUILD_TYPE=Release \ -DPLATFORM='desktop' \ -DAUDIO_BACKEND='openal' \ - -DDESKTOP_BACKEND='sdl2' \ + -DDESKTOP_BACKEND='sdl3' \ . || exit 1 }