-
Notifications
You must be signed in to change notification settings - Fork 57
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #242 from CreeperofDoom/master
Yuzusoft Game fixes (Yet Again)
- Loading branch information
Showing
5 changed files
with
42 additions
and
22 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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') |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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') |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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') |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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') |