From cf4824a00819d08f1f2c477af877ee0a75faca0a Mon Sep 17 00:00:00 2001 From: georgemoralis Date: Thu, 19 Sep 2024 12:34:45 +0300 Subject: [PATCH] hotfix2 : fix previous fix --- src/qt_gui/main_window.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/qt_gui/main_window.cpp b/src/qt_gui/main_window.cpp index c8981919d..1945db7f9 100644 --- a/src/qt_gui/main_window.cpp +++ b/src/qt_gui/main_window.cpp @@ -614,7 +614,7 @@ void MainWindow::BootGame() { path = std::filesystem::path(fileNames[0].toStdWString()); #endif Core::Emulator emulator; - if (!std::filesystem::exists(path) { + if (!std::filesystem::exists(path)) { QMessageBox::critical(nullptr, tr("Run Game"), QString(tr("Eboot.bin file not found"))); return;