From 5915767ab62c937372e849bf9e5fb58f0e3fe67c Mon Sep 17 00:00:00 2001 From: UsernamesAreNotMyThing <92757918+UsernamesAreNotMyThing@users.noreply.github.com> Date: Wed, 23 Oct 2024 19:39:20 -0400 Subject: [PATCH] Add Mini Ninjas audio fix Game needs an external library for audio to work. --- gamefixes-steam/35000.py | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 gamefixes-steam/35000.py diff --git a/gamefixes-steam/35000.py b/gamefixes-steam/35000.py new file mode 100644 index 0000000..3659533 --- /dev/null +++ b/gamefixes-steam/35000.py @@ -0,0 +1,7 @@ +"""Game fix for Mini Ninjas""" + +from protonfixes import util + +def main() -> None: + """Game needs OpenAL library for audio to work, but the game doesn't include it by default, leading to missing audio in-game, even on Windows.""" + util.protontricks('openal')