From 434ed0476c1cfa7f6834fd6876d811da4463551d Mon Sep 17 00:00:00 2001 From: Andrew Eikum Date: Thu, 15 Feb 2018 09:29:46 -0600 Subject: [PATCH] proton: Disable WINEDEBUG during winedbg session --- proton | 1 + 1 file changed, 1 insertion(+) diff --git a/proton b/proton index 672a2fff..17c49b85 100755 --- a/proton +++ b/proton @@ -245,6 +245,7 @@ if sys.argv[1] == "run": f.write("SteamGameId=\"" + env["SteamGameId"] + "\" \\\n") f.write("\tSteamAppId=\"" + env["SteamAppId"] + "\" \\\n") f.write("\tPATH=\"" + env["PATH"] + "\" \\\n") + f.write("\tWINEDEBUG=-all\\\n") f.write("\tWINEDLLPATH=\"" + env["WINEDLLPATH"] + "\" \\\n") f.write("\tLD_LIBRARY_PATH=\"" + env["LD_LIBRARY_PATH"] + "\" \\\n") f.write("\tWINEPREFIX=\"" + env["WINEPREFIX"] + "\" \\\n")