https://bugs.winehq.org/show_bug.cgi?id=45818
--- Comment #5 from Wynona Stacy Lockwood stacy@guppylog.com --- Ok, here's the script that launches the game. Should I just basically add export WINEDLLOVERRIDES=xaudio2_7=n to the list of exports?
#!/bin/sh appname=`basename "$0" | sed s,.sh$,,`
dirname=`dirname "$0"` tmp="${dirname#?}"
if [ "${dirname%$tmp}" != "/" ]; then dirname="$PWD/$dirname" fi LD_LIBRARY_PATH="$dirname:$LD_LIBRARY_PATH" export LD_LIBRARY_PATH export QTDIR=$dirname export QT_PLUGIN_PATH=$dirname/plugins "$dirname/$appname" "$@"