Skip to content

Commit

Permalink
Merge pull request #242 from CreeperofDoom/master
Browse files Browse the repository at this point in the history
Yuzusoft Game fixes (Yet Again)
  • Loading branch information
GloriousEggroll authored Mar 5, 2025
2 parents 5c69dfa + 20ba62a commit 3b8bc18
Show file tree
Hide file tree
Showing 5 changed files with 42 additions and 22 deletions.
12 changes: 12 additions & 0 deletions gamefixes-steam/1144400.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
""" Game fix for Senren*Banka
"""
from protonfixes import util

def main():
"""Install quartz, wmp11, qasf
Fixes in-game video playback for the intro and ending.
"""
util.protontricks('quartz')
util.protontricks('wmp11')
util.protontricks('qasf')
14 changes: 9 additions & 5 deletions gamefixes-steam/1277930.py
Original file line number Diff line number Diff line change
@@ -1,8 +1,12 @@
"""Game fix for Riddle Joker"""

""" Game fix for Riddle Joker
"""
from protonfixes import util

def main():
"""Install quartz, wmp11, qasf
def main() -> None:
"""Fixes in-game video playback for the intro and ending."""
util.disable_protonmediaconverter()
Fixes in-game video playback for the intro and ending.
"""
util.protontricks('quartz')
util.protontricks('wmp11')
util.protontricks('qasf')
14 changes: 9 additions & 5 deletions gamefixes-steam/1829980.py
Original file line number Diff line number Diff line change
@@ -1,8 +1,12 @@
"""Game fix for Café Stella and the Reaper's Butterflies"""

""" Game fix for Cafe Stella
"""
from protonfixes import util

def main():
"""Install quartz, wmp11, qasf
def main() -> None:
"""Fixes in-game video playback for the intro and ending."""
util.disable_protonmediaconverter()
Fixes in-game video playback for the intro and ending.
"""
util.protontricks('quartz')
util.protontricks('wmp11')
util.protontricks('qasf')
7 changes: 3 additions & 4 deletions gamefixes-steam/2458530.py
Original file line number Diff line number Diff line change
@@ -1,9 +1,8 @@
"""Game fix for Sanoba Witch FHD Edition"""

""" Game fix for Sanoba Witch FHD Edition
"""
from protonfixes import util


def main() -> None:
def main():
"""Install quartz, wmp11, qasf
Fixes in-game video playback for the intro and ending.
Expand Down
17 changes: 9 additions & 8 deletions gamefixes-steam/888790.py
Original file line number Diff line number Diff line change
@@ -1,11 +1,12 @@
"""Game fix for Sabbat of the Witch"""

""" Game fix for Sabbat of the Witch
"""
from protonfixes import util

def main():
"""Install quartz, wmp11, qasf
def main() -> None:
"""Fixes in-game video playback for the intro and ending."""
util.disable_protonmediaconverter()
# Changes the video renderer to 'overlay' to prevent random crashes
# See https://github.com/Open-Wine-Components/umu-protonfixes/pull/115#issuecomment-2319197337
util.append_argument('-vomstyle=overlay')
Fixes in-game video playback for the intro and ending.
"""
util.protontricks('quartz')
util.protontricks('wmp11')
util.protontricks('qasf')

0 comments on commit 3b8bc18

Please sign in to comment.