Added realtime flag to games when they launch. This hasn't shown any bad side affects, and may speed up games a bit.

This commit is contained in:
Storm Dragon 2020-10-11 16:49:14 -04:00
parent fd33349864
commit b7ff93c740

View File

@ -249,7 +249,7 @@ game_launcher() {
qjoypad -T "${game%|*}" 2> /dev/null & qjoypad -T "${game%|*}" 2> /dev/null &
fi fi
fi fi
WINEPREFIX="${HOME}/.local/wine/${game%|*}" wine start /d "${winePath}" "$wineExec" WINEPREFIX="${HOME}/.local/wine/${game%|*}" wine start /realtime /d "${winePath}" "$wineExec"
fi fi
exit 0 exit 0
} }