From 97db8b5d8d2109a3c93e11f1d6f2e8e8957774a0 Mon Sep 17 00:00:00 2001 From: Andrew Eikum Date: Mon, 24 Sep 2018 11:18:42 -0500 Subject: [PATCH] proton: Always use 'wine' instead of 'wine64' This should fix a bunch of .NET launchers failing with c0000017. --- proton.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/proton.in b/proton.in index b72c889e..e5d4d2d2 100755 --- a/proton.in +++ b/proton.in @@ -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)