Skip to content

fix: use correct values when overriding wine DLLs #303

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

Merged
merged 2 commits into from
May 1, 2025
Merged
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
2 changes: 1 addition & 1 deletion gamefixes-steam/105000.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,4 +7,4 @@


def main() -> None:
util.winedll_override('xaudio2_7', 'd')
util.winedll_override('xaudio2_7', '')
2 changes: 1 addition & 1 deletion gamefixes-steam/206480.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,4 +8,4 @@ def main() -> None:
"""Disable libglesv2"""
# gpu acelleration on wibed3d https://bugs.winehq.org/show_bug.cgi?id=44985
# Make the store work.
util.winedll_override('libglesv2', 'd')
util.winedll_override('libglesv2', '')
2 changes: 1 addition & 1 deletion gamefixes-steam/212500.py
Original file line number Diff line number Diff line change
Expand Up @@ -169,7 +169,7 @@ def main() -> None:
"""Disable libglesv2"""
## gpu acceleration on wined3d https://bugs.winehq.org/show_bug.cgi?id=44985
# Make the store work.
util.winedll_override('libglesv2', 'd')
util.winedll_override('libglesv2', '')
# Fix visible mouse in middle of screen while rotating camera
# This needs to run as a subprocess while the game is running,
# the proces will close itself when the game window isn't detected for 30 seconds
Expand Down
2 changes: 1 addition & 1 deletion gamefixes-steam/230820.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,4 +7,4 @@


def main() -> None:
util.winedll_override('xaudio2_7', 'd')
util.winedll_override('xaudio2_7', '')
2 changes: 1 addition & 1 deletion gamefixes-steam/243200.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,4 +7,4 @@


def main() -> None:
util.winedll_override('xaudio2_7', 'd')
util.winedll_override('xaudio2_7', '')
2 changes: 1 addition & 1 deletion gamefixes-steam/506510.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,4 @@

def main() -> None:
"""Fixes game getting stuck on a white screen."""
util.winedll_override('dcomp', 'd')
util.winedll_override('dcomp', '')
2 changes: 1 addition & 1 deletion gamefixes-steam/968370.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,5 +6,5 @@


def main() -> None:
util.winedll_override('d3d9', 'd')
util.winedll_override('d3d9', '')
util.protontricks('segoe_script')
2 changes: 1 addition & 1 deletion gamefixes-umu/umu-3513350.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ def main() -> None:
This disables Proton mfplat at the cost
of in-game experience for now.
"""
util.winedll_override('mfplat', 'd')
util.winedll_override('mfplat', '')
"""In-game browser fix."""
util.wineexe_override('KRSDKExternal', 'd')
"""Font fixes for in-game resources, if any."""
Expand Down
2 changes: 1 addition & 1 deletion gamefixes-umu/umu-silenthill3.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,4 @@
def main() -> None:
# Needs directmusic for some cutscenes
util.protontricks('directmusic')
util.winedll_override('dsound', 'builtin')
util.winedll_override('dsound', 'b')
Loading