From c267c683688dc18e35fb5a6b867f7cd654b97348 Mon Sep 17 00:00:00 2001 From: redstrate Date: Tue, 2 Nov 2021 08:38:04 -0400 Subject: [PATCH] Add option to launch sys info --- src/xivlauncher.cpp | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/xivlauncher.cpp b/src/xivlauncher.cpp index 9648d1f..10e3bc1 100755 --- a/src/xivlauncher.cpp +++ b/src/xivlauncher.cpp @@ -157,6 +157,11 @@ LauncherWindow::LauncherWindow(QWidget* parent) : 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 savedLobbyURL = settings.value("lobbyURL", "127.0.0.1").toString(); const auto shouldRememberUsername = settings.value("rememberUsername", false).toBool();