From 2fed74f9c9de123d31be065811ee9ec8efafa7e8 Mon Sep 17 00:00:00 2001 From: eskay993 Date: Sun, 2 Mar 2025 18:10:52 +0000 Subject: [PATCH] Add fix for Deus Ex: Invisible War (#248) Add fix for extremely loud audio glitches when using Spy Drones and when in hangar section. --- gamefixes-steam/6920.py | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 gamefixes-steam/6920.py diff --git a/gamefixes-steam/6920.py b/gamefixes-steam/6920.py new file mode 100644 index 00000000..0716cbcb --- /dev/null +++ b/gamefixes-steam/6920.py @@ -0,0 +1,9 @@ +"""Deus Ex: Invisible War""" + +from protonfixes import util + + +def main() -> None: + # Fix for extremely loud audio glitches when using Spy Drones + util.protontricks('dsound') + \ No newline at end of file