From a65636364209dd11761b229e3e58492230a8380a Mon Sep 17 00:00:00 2001 From: Joshua Goins Date: Mon, 31 Jul 2023 19:23:28 -0400 Subject: [PATCH] Set a "launching game..." stage message --- launcher/src/launchercore.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/launcher/src/launchercore.cpp b/launcher/src/launchercore.cpp index 6c61d90..0cbc3d8 100755 --- a/launcher/src/launchercore.cpp +++ b/launcher/src/launchercore.cpp @@ -66,6 +66,8 @@ void LauncherCore::launchGame(const Profile &profile, const LoginAuth &auth) void LauncherCore::beginGameExecutable(const Profile &profile, const LoginAuth &auth) { + Q_EMIT stageChanged("Launching game..."); + QString gameExectuable; if (profile.directx9Enabled()) { gameExectuable = profile.gamePath() + "/game/ffxiv.exe";