From 9bc153ad3283da8e3d0be38d36de6882539de8d2 Mon Sep 17 00:00:00 2001 From: PBeGood4 Date: Wed, 8 May 2024 02:51:21 +0100 Subject: [PATCH] Add missing ')' on windows --- src/mainwindow.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/mainwindow.cpp b/src/mainwindow.cpp index 13da934..eb423de 100755 --- a/src/mainwindow.cpp +++ b/src/mainwindow.cpp @@ -1326,7 +1326,7 @@ void MainWindow::on_launchGame_pushButton_clicked(bool onExit, bool returnToolti clip->setText("\"" + execPath + "/" + exeName + "\" -iwad \"" + iwads_paths.at(ui->iwad_comboBox->currentIndex()).second + "\" " + argStrComplete); #else std::replace(execPath.begin(), execPath.end(), '/', '\\'); - clip->setText("\""+execPath+"\\"+exeName+".exe\" -iwad \""+iwads_paths.at(ui->iwad_comboBox->currentIndex()).second+"\" "+argStrComplete; + clip->setText("\"" + execPath + "\\" + exeName + ".exe\" -iwad \"" + iwads_paths.at(ui->iwad_comboBox->currentIndex()).second + "\" " + argStrComplete); #endif }