Specifically launch win64 prefixes with wine64 command for the Mac.
This commit is contained in:
parent
7503379215
commit
3cd87add93
@ -350,7 +350,12 @@ game_launcher() {
|
||||
qjoypad -T "${game%|*}" 2> /dev/null &
|
||||
fi
|
||||
fi
|
||||
WINEPREFIX="${HOME}/.local/wine/${game%|*}" wine start /realtime /d "${winePath}" "$wineExec"
|
||||
export WINEPREFIX="${HOME}/.local/wine/${game%|*}"
|
||||
if [[ -d "${WINEPREFIX}/drive_c/windows/syswow64" ]]; then
|
||||
wine64 start /realtime /d "${winePath}" "$wineExec"
|
||||
else
|
||||
wine start /realtime /d "${winePath}" "$wineExec"
|
||||
fi
|
||||
fi
|
||||
exit 0
|
||||
}
|
||||
@ -456,6 +461,7 @@ gameList=(
|
||||
"The Great Toy Robbery"
|
||||
#"Three D velocity"
|
||||
"Top Speed 3"
|
||||
"Triple Triad"
|
||||
"Undead Assault"
|
||||
)
|
||||
|
||||
@ -959,6 +965,13 @@ EOF
|
||||
wine "${cache}/Tspeed_3.0.3.exe" /silent
|
||||
add_launcher "c:\Program Files\Playing in the dark\Top Speed 3\TopSpeed.exe"
|
||||
;;
|
||||
"Triple Triad")
|
||||
export winVer="win7"
|
||||
install_wine_bottle vb6run dx8vb quartz
|
||||
download "https://www.kaldobsky.com/audiogames/tripletriad.zip"
|
||||
unzip -d "$WINEPREFIX/drive_c/Program Files/Triple Triad" "${cache}/tripletriad.zip"
|
||||
add_launcher "c:\Program Files\Triple Triad\TripleTriad.exe"
|
||||
;;
|
||||
"Undead Assault")
|
||||
export winVer="win7"
|
||||
install_wine_bottle speechsdk
|
||||
|
Loading…
Reference in New Issue
Block a user