mirror of
https://github.com/ValveSoftware/Proton.git
synced 2025-01-24 20:48:12 +03:00
proton: Add usenativexinput13 compat config option.
Various games using KT Engine like recent WRC and TT Isle of Man, when run in a win10 prefix, try to load UWP/xinput1_3.dll that ships with the games. It seems to be mostly-compatible xinput implementation built on top of windows.gaming.input.dll. However if we try to replace it with the builtin the game crashes because it tries to call entry points that are not available in the original xinput (that's the "mostly-compatible" part), so we need this override. Since our windows.gaming.input.dll implementation is just a stub controllers other than steering wheels (which are handled through dinput) do not work.
This commit is contained in:
parent
fdc3651992
commit
cc9c109bf6
3
proton
3
proton
@ -1047,6 +1047,9 @@ class Session:
|
||||
if "hidenvgpu" in self.compat_config:
|
||||
self.env["WINE_HIDE_NVIDIA_GPU"] = "1"
|
||||
|
||||
if "usenativexinput13" in self.compat_config:
|
||||
self.dlloverrides["xinput1_3"] = "n"
|
||||
|
||||
if "PROTON_CRASH_REPORT_DIR" in self.env:
|
||||
self.env["WINE_CRASH_REPORT_DIR"] = self.env["PROTON_CRASH_REPORT_DIR"]
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user