From ec9f1a208aa13419dffcd38e6861a85bd1686f9b Mon Sep 17 00:00:00 2001 From: Storm Dragon Date: Mon, 2 Nov 2020 12:57:26 -0500 Subject: [PATCH] Removed automatic installation of espeak because it was causing failures on some systems. Also, for most games, it was cutting off parts of words. --- audiogame-manager.sh | 5 ----- 1 file changed, 5 deletions(-) diff --git a/audiogame-manager.sh b/audiogame-manager.sh index 6db1edb..d461b40 100755 --- a/audiogame-manager.sh +++ b/audiogame-manager.sh @@ -130,11 +130,6 @@ install_wine_bottle() { # Arguments to the function are dependancies to be installed. (wine msiexec /i z:/usr/share/wine/mono/$(ls -1 /usr/share/wine/mono/) /silent wine msiexec /i z:$(ls -1 /usr/share/wine/gecko/*x86.msi) /silent - # If the game requires speechsdk, get the espeak voices. - if [[ "$*" =~ speechsdk ]]; then - download "http://sourceforge.net/projects/espeak/files/espeak/espeak-1.48/setup_espeak-1.48.04.exe" - wine "${cache}/setup_espeak-1.48.04.exe" /silent - fi winetricks -q $@ ${winVer:-winxp} ${winetricksSettings}) | dialog --progressbox "Installing wine bottle, please wait..." -1 -1 }