Skip to content

Commit

Permalink
Add missing ')' on windows
Browse files Browse the repository at this point in the history
  • Loading branch information
Pedro-Beirao committed May 8, 2024
1 parent ce6319c commit 9bc153a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/mainwindow.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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
}

Expand Down

0 comments on commit 9bc153a

Please sign in to comment.