From f922357d13e4b72bb107d87d6285743b2a4872a2 Mon Sep 17 00:00:00 2001 From: Andrew Eikum Date: Mon, 15 Jul 2019 08:15:58 -0500 Subject: [PATCH] proton: Disable built-in mfplay Allows UE games to function as they did before. --- proton | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/proton b/proton index 5673ea2e..68908382 100755 --- a/proton +++ b/proton @@ -196,7 +196,10 @@ with dist_lock: try_copy(basedir + "/version", basedir + "/dist/") env = dict(os.environ) -dlloverrides = {"steam.exe": "b"} #always use our special built-in steam.exe +dlloverrides = { + "steam.exe": "b", #always use our special built-in steam.exe + "mfplay": "n" #disable built-in mfplay + } if "HOST_LC_ALL" in env and len(env["HOST_LC_ALL"]) > 0: #steam sets LC_ALL=C to help some games, but Wine requires the real value