From 5d3dfb6ca25bdf9c8375f7465b3a88926a1fec84 Mon Sep 17 00:00:00 2001 From: redstrate Date: Tue, 2 Nov 2021 08:39:52 -0400 Subject: [PATCH] Add option to launch config backup * I had no idea this tool existed actually :-p --- src/xivlauncher.cpp | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/xivlauncher.cpp b/src/xivlauncher.cpp index 10e3bc1..0e3b6be 100755 --- a/src/xivlauncher.cpp +++ b/src/xivlauncher.cpp @@ -162,6 +162,11 @@ LauncherWindow::LauncherWindow(QWidget* parent) : launchExecutable({gamePath + "/boot/ffxivsysinfo64.exe"}); }); + QAction* launchCfgBackup = toolsMenu->addAction("Launch Config Backup..."); + connect(launchCfgBackup, &QAction::triggered, [=] { + launchExecutable({gamePath + "/boot/ffxivconfig64.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();