mirror of
https://github.com/redstrate/Astra.git
synced 2025-04-20 19:57:45 +00:00
Use non-64 ffxivboot
* Helps prevent FFXIV thinking it's a macOS-licensed game under Linux
This commit is contained in:
parent
4d0ccedbb4
commit
147eaad852
2 changed files with 2 additions and 2 deletions
|
@ -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);
|
||||
|
|
|
@ -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...");
|
||||
|
|
Loading…
Add table
Reference in a new issue