1
Fork 0
mirror of https://github.com/redstrate/Astra.git synced 2025-04-22 04:37:46 +00:00

Fix ffxivboot path

Running the 32-bit version fails to update in Wine, presumably because
it's trying to run the 64-bit updater.
This commit is contained in:
Joshua Goins 2022-04-13 10:23:16 -04:00
parent c61e971d63
commit ed53c87343

View file

@ -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...");