Skip to content

Commit

Permalink
Merge pull request #39 from rockerbacon/tweaks
Browse files Browse the repository at this point in the history
Add noesync to Fallout 4 and option to override pulse-restart
  • Loading branch information
rockerbacon authored May 12, 2020
2 parents dc168d8 + 0d63ad5 commit d621e04
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 1 deletion.
2 changes: 1 addition & 1 deletion gamesinfo/fallout4.sh
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
game_steam_subdirectory="Fallout 4"
game_appid=377160
game_proton_options="--restart-pulse --native 'xaudio2_7' --protonver 5.*"
game_proton_options="--restart-pulse --noesync --native 'xaudio2_7' --protonver 5.*"
game_wine_options="--restart-pulse --native 'xaudio2_7'"
game_protontricks=""
game_winetricks=""
Expand Down
6 changes: 6 additions & 0 deletions runners/proton-launcher.sh
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,8 @@ OPTIONS:
--int-scaling enable integer scaling
--keep-pulse do not restart pulseaudio (default)
-n,--native specify dlls which should prefer native versions
should be a quoted space-separated list
eg.: -n 'xaudio2_7 d3d9'
Expand Down Expand Up @@ -121,6 +123,10 @@ while [ "$parsing_args" == "true" ]; do
proton_extra_evs+=("WINE_FULLSCREEN_INTEGER_SCALING=1"); shift 1
;;

--keep-pulse)
restart_pulse=false; shift 1
;;

-n|--native)
dlls=$2; shift 2

Expand Down
6 changes: 6 additions & 0 deletions runners/wine-launcher.sh
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,8 @@ OPTIONS:
--int-scaling enable integer scaling
--keep-pulse do not restart pulseaudio (default)
-n,--native specify dlls which should prefer native versions
should be a quoted space-separated list
eg.: -n 'xaudio2_7 d3d9'
Expand Down Expand Up @@ -99,6 +101,10 @@ while [ "$parsing_args" == "true" ]; do
wine_extra_evs+=("WINE_FULLSCREEN_INTEGER_SCALING=1"); shift 1
;;

--keep-pulse)
restart_pulse=false; shift 1
;;

-n|--native)
dlls=$2; shift 2

Expand Down

0 comments on commit d621e04

Please sign in to comment.