From ed53c87343a160bb922aab62226e5f6e821c6614 Mon Sep 17 00:00:00 2001 From: Joshua Goins Date: Wed, 13 Apr 2022 10:23:16 -0400 Subject: [PATCH] Fix ffxivboot path Running the 32-bit version fails to update in Wine, presumably because it's trying to run the 64-bit updater. --- src/launcherwindow.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/launcherwindow.cpp b/src/launcherwindow.cpp index 2bd56a4..e0f844f 100644 --- a/src/launcherwindow.cpp +++ b/src/launcherwindow.cpp @@ -28,7 +28,7 @@ LauncherWindow::LauncherWindow(LauncherCore& core, QWidget* parent) : QMainWindo launchOfficial = toolsMenu->addAction("Open Official Client..."); launchOfficial->setIcon(QIcon::fromTheme("application-x-executable")); connect(launchOfficial, &QAction::triggered, [=] { - this->core.launchExecutable(currentProfile(), {currentProfile().gamePath + "/boot/ffxivboot.exe"}); + this->core.launchExecutable(currentProfile(), {currentProfile().gamePath + "/boot/ffxivboot64.exe"}); }); launchSysInfo = toolsMenu->addAction("Open System Info...");