mirror of
https://github.com/lutris/lutris
synced 2024-11-02 08:20:51 +00:00
Fix gamescope arguments
This commit is contained in:
parent
82e7dbf791
commit
ff336afe0b
1 changed files with 2 additions and 2 deletions
|
@ -110,9 +110,9 @@ def get_gamescope_args(launch_arguments, system_config):
|
|||
if system_config.get("gamescope_game_res"):
|
||||
game_width, game_height = system_config["gamescope_game_res"].lower().split("x")
|
||||
launch_arguments.insert(0, game_height)
|
||||
launch_arguments.insert(0, "-H")
|
||||
launch_arguments.insert(0, "-h")
|
||||
launch_arguments.insert(0, game_width)
|
||||
launch_arguments.insert(0, "-W")
|
||||
launch_arguments.insert(0, "-w")
|
||||
launch_arguments.insert(0, "gamescope")
|
||||
return launch_arguments
|
||||
|
||||
|
|
Loading…
Reference in a new issue