Skip to content

Commit

Permalink
fix: Gamescope options arguments
Browse files Browse the repository at this point in the history
  • Loading branch information
SuperSamus committed Feb 24, 2024
1 parent 87ce1a2 commit 5941f4f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions bottles/backend/wine/winecommand.py
Original file line number Diff line number Diff line change
Expand Up @@ -604,9 +604,9 @@ def _get_gamescope_cmd(self, return_steam_cmd: bool = False) -> str:
if params.gamescope_borderless:
gamescope_cmd.append("-b")
if params.gamescope_scaling:
gamescope_cmd.append("-n")
gamescope_cmd.append("-S integer")
if params.fsr:
gamescope_cmd.append("-U")
gamescope_cmd.append("-F fsr")
# Upscaling sharpness is from 0 to 20. There are 5 FSR upscaling levels,
# so multiply by 4 to reach 20
gamescope_cmd.append(
Expand Down

0 comments on commit 5941f4f

Please sign in to comment.