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:
parent
c61e971d63
commit
ed53c87343
1 changed files with 1 additions and 1 deletions
|
@ -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...");
|
||||
|
|
Loading…
Add table
Reference in a new issue