From 2eba66ba5a52e70ac1d34f91bcc711ebc19061b5 Mon Sep 17 00:00:00 2001 From: Storm Dragon Date: Wed, 9 Mar 2022 12:49:58 -0500 Subject: [PATCH] Updated the Scramble launcher to try to fix it not launching on the Pi and possibly Mac. --- audiogame-manager.sh | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/audiogame-manager.sh b/audiogame-manager.sh index 92248fa..b455753 100755 --- a/audiogame-manager.sh +++ b/audiogame-manager.sh @@ -772,6 +772,12 @@ game_launcher() { wine "$winePath\\$wineExec" exit 0 fi + if [[ "$game" =~ scramble ]]; then + pushd "$(winepath "$winePath")" + wine "$wineExec" + popd + exit 0 + fi if [[ "$game" =~ screaming-strike-2 ]]; then pushd "$(winepath "$winePath")" wine "$wineExec"