Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

(Newer) Many WMP9 Video Playback fixes for Yuzusoft VN's #63

Closed
wants to merge 1 commit into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 13 additions & 0 deletions gamefixes-steam/1144400.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
""" Game fix for Senren Banka
"""
#pylint: disable=C0103

from protonfixes import util

def main():
"""
"""
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Either delete this empty docstring or add a short comment summarizing the fix and its aim. Otherwise, the CI will always fail.

util.protontricks('quartz')
util.protontricks('wmp9')
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Have you tested with wmp11?

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

WMP11 install instead of WMP9 results in a black screen.

util.protontricks('directshow')
util.disable_protonaudioconverter()
13 changes: 13 additions & 0 deletions gamefixes-steam/1277930.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
""" Game fix for Riddle Joker
"""
#pylint: disable=C0103

from protonfixes import util

def main():
"""
"""
util.protontricks('quartz')
util.protontricks('wmp9')
util.protontricks('directshow')
util.disable_protonaudioconverter()
13 changes: 13 additions & 0 deletions gamefixes-steam/1829980.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
""" Game fix for Cafe Stella
"""
#pylint: disable=C0103

from protonfixes import util

def main():
"""
"""
util.protontricks('quartz')
util.protontricks('wmp9')
util.protontricks('directshow')
util.disable_protonaudioconverter()
13 changes: 13 additions & 0 deletions gamefixes-steam/2458530.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
""" Game fix for Sanoba Witch FHD Edition
"""
#pylint: disable=C0103

from protonfixes import util

def main():
"""
"""
util.protontricks('quartz')
util.protontricks('wmp9')
util.protontricks('directshow')
util.disable_protonaudioconverter()
13 changes: 13 additions & 0 deletions gamefixes-steam/888790.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
""" Game fix for Sabbat of the Witch
"""
#pylint: disable=C0103

from protonfixes import util

def main():
"""
"""
util.protontricks('quartz')
util.protontricks('wmp9')
util.protontricks('directshow')
util.disable_protonaudioconverter()
Loading