Skip to content

Commit

Permalink
Enforce correct literal type usage
Browse files Browse the repository at this point in the history
  • Loading branch information
Root-Core committed Dec 17, 2024
1 parent fd8b058 commit ec2292f
Show file tree
Hide file tree
Showing 8 changed files with 9 additions and 10 deletions.
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', '')
5 changes: 2 additions & 3 deletions gamefixes-steam/206480.py
Original file line number Diff line number Diff line change
@@ -1,11 +1,10 @@
"""Game fix Dungeons & Dragons Online"""

#
from protonfixes import util


def main() -> None:
"""Disable libglesv2"""
# gpu acelleration on wibed3d https://bugs.winehq.org/show_bug.cgi?id=44985
# 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', '')
2 changes: 1 addition & 1 deletion gamefixes-steam/212500.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 wined3d 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/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/593600.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,4 @@

def main() -> None:
"""Overrides the mprapi.dll to native."""
util.winedll_override('mprapi', 'x')
util.winedll_override('mprapi', 'n')
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-starcitizen.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,4 +12,4 @@ def main() -> None:
util.protontricks('powershell')

# RSI Launcher animation
util.winedll_override("libglesv2", "builtin")
util.winedll_override('libglesv2', 'b')

0 comments on commit ec2292f

Please sign in to comment.