From d4a2aa5730a6c38476d486b315038241461090eb Mon Sep 17 00:00:00 2001 From: Pedro Beirao Date: Mon, 11 Nov 2024 21:07:06 +0000 Subject: [PATCH] Fix windows build --- src/mainwindow.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/mainwindow.cpp b/src/mainwindow.cpp index 2f7c073..e1530e3 100755 --- a/src/mainwindow.cpp +++ b/src/mainwindow.cpp @@ -651,7 +651,7 @@ void MainWindow::Launch(QStringList arguments) } #else QString gamePath = getGamePath(); - QFile port = QFile(getGamePath()); + QFile port = QFile(getGamePath(); if (port.exists()) { QProcess *process = new QProcess;