Skip to content

Commit

Permalink
fix: Gamescope options arguments
Browse files Browse the repository at this point in the history
  • Loading branch information
SuperSamus authored Dec 25, 2023
1 parent 55942cb commit c437db7
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 @@ -560,9 +560,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(f"--fsr-sharpness {params.fsr_sharpening_strength * 4}")
Expand Down

0 comments on commit c437db7

Please sign in to comment.