1
Fork 0
mirror of https://github.com/redstrate/Astra.git synced 2025-04-23 04:57:44 +00:00

Add option to launch sys info

This commit is contained in:
redstrate 2021-11-02 08:38:04 -04:00
parent ad294867ca
commit c267c68368

View file

@ -157,6 +157,11 @@ LauncherWindow::LauncherWindow(QWidget* parent) :
launchExecutable({gamePath + "/boot/ffxivboot64.exe"}); launchExecutable({gamePath + "/boot/ffxivboot64.exe"});
}); });
QAction* launchSysInfo = toolsMenu->addAction("Launch System Info...");
connect(launchSysInfo, &QAction::triggered, [=] {
launchExecutable({gamePath + "/boot/ffxivsysinfo64.exe"});
});
const auto savedServerType = settings.value("serverType", 0).toInt(); const auto savedServerType = settings.value("serverType", 0).toInt();
const auto savedLobbyURL = settings.value("lobbyURL", "127.0.0.1").toString(); const auto savedLobbyURL = settings.value("lobbyURL", "127.0.0.1").toString();
const auto shouldRememberUsername = settings.value("rememberUsername", false).toBool(); const auto shouldRememberUsername = settings.value("rememberUsername", false).toBool();