Remove unnecessary Windows-specific code

This commit is contained in:
VoxelTek 2025-06-26 23:02:42 +10:00
parent c6d3dfb74f
commit 6adab369da

View File

@ -173,17 +173,12 @@ void CMainDialog::launch()
QMessageBox::Close
);
#ifdef _WIN32
if (!QProcess::startDetached("./isle.exe")) {
msgBox.exec();
}
#else
if (!QProcess::startDetached("./isle")) { // Check in isle-config directory
if (!QProcess::startDetached("isle")) { // Check in $PATH
msgBox.exec();
}
}
#endif
QDialog::accept();
}