diff --git a/src/launchercore.cpp b/src/launchercore.cpp index 67f3cbf..33c8f89 100755 --- a/src/launchercore.cpp +++ b/src/launchercore.cpp @@ -470,7 +470,7 @@ void LauncherCore::saveSettings() { void LauncherCore::addUpdateButtons(const ProfileSettings& settings, QMessageBox& messageBox) { auto launcherButton = messageBox.addButton("Launch Official Launcher", QMessageBox::NoRole); connect(launcherButton, &QPushButton::clicked, [=] { - launchExecutable(settings, {settings.gamePath + "/boot/ffxivboot64.exe"}); + launchExecutable(settings, {settings.gamePath + "/boot/ffxivboot.exe"}); }); messageBox.addButton(QMessageBox::StandardButton::Ok); diff --git a/src/launcherwindow.cpp b/src/launcherwindow.cpp index 1cacc08..ad2db4e 100644 --- a/src/launcherwindow.cpp +++ b/src/launcherwindow.cpp @@ -26,7 +26,7 @@ LauncherWindow::LauncherWindow(LauncherCore& core, QWidget* parent) : QMainWindo QAction* launchOfficial = toolsMenu->addAction("Launch Official Client..."); connect(launchOfficial, &QAction::triggered, [=] { - this->core.launchExecutable(currentProfile(), {currentProfile().gamePath + "/boot/ffxivboot64.exe"}); + this->core.launchExecutable(currentProfile(), {currentProfile().gamePath + "/boot/ffxivboot.exe"}); }); QAction* launchSysInfo = toolsMenu->addAction("Launch System Info...");