proton: Always use 'wine' instead of 'wine64'

This should fix a bunch of .NET launchers failing with c0000017.
This commit is contained in:
Andrew Eikum 2018-09-24 11:18:42 -05:00
parent 79213d39af
commit 97db8b5d8d

View File

@ -88,7 +88,7 @@ basedir = os.path.dirname(sys.argv[0])
bindir = basedir + "/dist/bin/"
libdir = basedir + "/dist/lib"
lib64dir = basedir + "/dist/lib64"
wine_path = bindir + "/wine64"
wine_path = bindir + "/wine"
#extract if needed
dist_lock = FileLock(basedir + "/dist.lock", timeout=-1)