From 232ef141f1f1e215b6766dc5ef85c0755b70208f Mon Sep 17 00:00:00 2001 From: R1kaB3rN <100738684+R1kaB3rN@users.noreply.github.com> Date: Wed, 5 Jun 2024 10:29:11 -0700 Subject: [PATCH] umu_run: set WINEDLLPATH --- umu/umu_run.py | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/umu/umu_run.py b/umu/umu_run.py index 3539c9b23..205083b7a 100755 --- a/umu/umu_run.py +++ b/umu/umu_run.py @@ -279,6 +279,12 @@ def set_env( env["WINESERVER"] = proton.wineserver_bin env["WINETRICKS_LATEST_VERSION_CHECK"] = "disabled" env["LD_PRELOAD"] = "" + env["WINEDLLPATH"] = ":".join( + [ + Path(proton.lib_dir, "wine").as_posix(), + Path(proton.lib64_dir, "wine").as_posix(), + ] + ) env["WINETRICKS_SUPER_QUIET"] = ( "" if os.environ.get("UMU_LOG") == "debug" else "1" )