From f8987915c5f9c71d3c31cce10429138c1d47dee0 Mon Sep 17 00:00:00 2001 From: Michael Kuehn Date: Wed, 27 May 2026 01:22:36 +0200 Subject: [PATCH] add fix for Zwift --- gamefixes-umu/umu-zwift.py | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 gamefixes-umu/umu-zwift.py diff --git a/gamefixes-umu/umu-zwift.py b/gamefixes-umu/umu-zwift.py new file mode 100644 index 00000000..8558ceef --- /dev/null +++ b/gamefixes-umu/umu-zwift.py @@ -0,0 +1,12 @@ +"""Game fix for Zwift""" + +import os +from protonfixes import util + +# Necessary for dotnet installations +# see: https://github.com/Open-Wine-Components/umu-protonfixes/pull/557 +def early() -> None: + os.environ['PROTON_DLL_COPY'] = '*' + +def main() -> None: + util.protontricks('corefonts dotnet48 d3dcompiler_47 webview2')