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

Use non-64 ffxivboot

* Helps prevent FFXIV thinking it's a macOS-licensed game under Linux
This commit is contained in:
redstrate 2021-12-02 22:26:08 -05:00
parent 4d0ccedbb4
commit 147eaad852
2 changed files with 2 additions and 2 deletions

View file

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

View file

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