-
Notifications
You must be signed in to change notification settings - Fork 48
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update fixes for YUZUSOFT titles (#115)
* Remove fix for Senren * Banka * Update fix for Riddle Joker * Update fix for Café Stella and the Reaper's Butterflies * Update fix for Sanoba Witch FHD Edition * Update fix for Sabbat of the Witch * Prevent crashes for Sabbat of the Witch * Revert "Update fix for Sanoba Witch FHD Edition" This reverts commit fec1850.
- Loading branch information
Showing
5 changed files
with
18 additions
and
34 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
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,12 +1,10 @@ | ||
""" Game fix for Riddle Joker | ||
""" | ||
"""Game fix for Riddle Joker""" | ||
|
||
from protonfixes import util | ||
|
||
def main(): | ||
"""Install quartz, wmp11, qasf | ||
|
||
def main(): | ||
""" | ||
Fixes in-game video playback for the intro and ending. | ||
""" | ||
util.protontricks('quartz') | ||
util.protontricks('wmp11') | ||
util.protontricks('qasf') | ||
util.disable_protonmediaconverter() |
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,12 +1,10 @@ | ||
""" Game fix for Café Stella and the Reaper's Butterflies | ||
""" | ||
"""Game fix for Café Stella and the Reaper's Butterflies""" | ||
|
||
from protonfixes import util | ||
|
||
def main(): | ||
"""Install quartz, wmp11, qasf | ||
|
||
def main(): | ||
""" | ||
Fixes in-game video playback for the intro and ending. | ||
""" | ||
util.protontricks('quartz') | ||
util.protontricks('wmp11') | ||
util.protontricks('qasf') | ||
util.disable_protonmediaconverter() |
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,12 +1,13 @@ | ||
""" 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(): | ||
""" | ||
Fixes in-game video playback for the intro and ending. | ||
""" | ||
util.protontricks('quartz') | ||
util.protontricks('wmp11') | ||
util.protontricks('qasf') | ||
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") |