From 7e9c7a09a37664d8bac52ea8f89d20a2c53782b8 Mon Sep 17 00:00:00 2001 From: Arkadiusz Hiler Date: Wed, 6 Nov 2024 16:27:40 +0200 Subject: [PATCH] Revert "proton: Populate NVIDIA_WINE_DLL_DIR when available" This reverts commit 16dbf51c57157e75633e1b7e924b11661638c039. --- proton | 6 ------ 1 file changed, 6 deletions(-) diff --git a/proton b/proton index 0691a8cf..83e59b2a 100755 --- a/proton +++ b/proton @@ -1543,12 +1543,6 @@ class Session: if "PROTON_CRASH_REPORT_DIR" in self.env: self.env["WINE_CRASH_REPORT_DIR"] = self.env["PROTON_CRASH_REPORT_DIR"] - # NVIDIA software may check NVIDIA_WINE_DLL_DIR as a search-path for - # driver-provided DLLs for use by Proton/Wine. - nvidia_wine_dll_dir = find_nvidia_wine_dll_dir() - if nvidia_wine_dll_dir: - self.env["NVIDIA_WINE_DLL_DIR"] = nvidia_wine_dll_dir - if "PROTON_LOG" in self.env and nonzero(self.env["PROTON_LOG"]): if self.setup_logging(append_forever=False): self.log_file.write("======================\n")