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

(New) Many WMP9 Video Playback fixes for Yuzusoft VN's #62

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.

It's the empty docstring which is unnecessary. See the linter errors for more details

Copy link
Contributor Author

Choose a reason for hiding this comment

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

and does this mean i have to submit another pull request with those gone in the script

util.protontricks('quartz')
util.protontricks('wmp9')
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