From 66a684eb81ae583b5a9f3ffc446bbb718faa27d6 Mon Sep 17 00:00:00 2001 From: iodream Date: Sun, 22 Sep 2024 02:20:16 +0300 Subject: [PATCH 1/4] add fix for Worms: Blast fixes in-menu and in-game music by installing directmusic --- gamefixes-steam/70650.py | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100755 gamefixes-steam/70650.py diff --git a/gamefixes-steam/70650.py b/gamefixes-steam/70650.py new file mode 100755 index 00000000..7b8e7629 --- /dev/null +++ b/gamefixes-steam/70650.py @@ -0,0 +1,9 @@ +""" Game fix for Worms: Blast """ + +from protonfixes import util + + +def main() -> None: + """ Installs directmusic to fix menu and game music """ + + util.protontricks('directmusic') From 24be040bf3dea01c9e83023972e94052c7cbff62 Mon Sep 17 00:00:00 2001 From: R1kaB3rN <100738684+R1kaB3rN@users.noreply.github.com> Date: Sat, 21 Sep 2024 21:51:22 -0700 Subject: [PATCH 2/4] fix: remove whitespaces in docstring --- gamefixes-steam/70650.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gamefixes-steam/70650.py b/gamefixes-steam/70650.py index 7b8e7629..f903ecc6 100755 --- a/gamefixes-steam/70650.py +++ b/gamefixes-steam/70650.py @@ -4,6 +4,6 @@ def main() -> None: - """ Installs directmusic to fix menu and game music """ + """Installs directmusic to fix menu and game music""" util.protontricks('directmusic') From 76308d5faddebdfe30ffbe6a1a5ce561db6fa2f5 Mon Sep 17 00:00:00 2001 From: R1kaB3rN <100738684+R1kaB3rN@users.noreply.github.com> Date: Sat, 21 Sep 2024 21:53:12 -0700 Subject: [PATCH 3/4] fix: remove blank line after docstring --- gamefixes-steam/70650.py | 1 - 1 file changed, 1 deletion(-) diff --git a/gamefixes-steam/70650.py b/gamefixes-steam/70650.py index f903ecc6..d6174dd8 100755 --- a/gamefixes-steam/70650.py +++ b/gamefixes-steam/70650.py @@ -5,5 +5,4 @@ def main() -> None: """Installs directmusic to fix menu and game music""" - util.protontricks('directmusic') From 4564050faeb70217681ec15187df5ce122cc9838 Mon Sep 17 00:00:00 2001 From: R1kaB3rN <100738684+R1kaB3rN@users.noreply.github.com> Date: Sat, 21 Sep 2024 21:53:40 -0700 Subject: [PATCH 4/4] fix: remove whitespaces in docstring --- gamefixes-steam/70650.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gamefixes-steam/70650.py b/gamefixes-steam/70650.py index d6174dd8..a91f43ab 100755 --- a/gamefixes-steam/70650.py +++ b/gamefixes-steam/70650.py @@ -1,4 +1,4 @@ -""" Game fix for Worms: Blast """ +"""Game fix for Worms: Blast""" from protonfixes import util