fix(pgr): fixed game launching command

This commit is contained in:
Observer KRypt0n_ 2023-05-30 21:00:27 +02:00
parent 190ebb2ad8
commit 5526e5df93
No known key found for this signature in database
GPG key ID: 844DA47BA25FE1E2

View file

@ -86,12 +86,12 @@ pub fn run() -> anyhow::Result<()> {
bash_command += &run_command;
bash_command += " ";
if let Some(virtual_desktop) = config.game.wine.virtual_desktop.get_command("honkers") {
if let Some(virtual_desktop) = config.game.wine.virtual_desktop.get_command("pgr") {
windows_command += &virtual_desktop;
windows_command += " ";
}
windows_command += "launch.bat ";
windows_command += "PGR.exe ";
if config.game.wine.borderless {
windows_command += "-screen-fullscreen 0 -popupwindow ";