From bb1eb8ea4c91c854b6a518b1de71cd604dcdfee4 Mon Sep 17 00:00:00 2001 From: Joshua Goins Date: Mon, 1 Apr 2024 22:47:20 -0400 Subject: [PATCH] Revert "Test to try initializing Steam API" This reverts commit 8d246bc8e1a08a7125ac88b6d7457454a98d27dc. --- launcher/src/gamerunner.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/launcher/src/gamerunner.cpp b/launcher/src/gamerunner.cpp index a4841be..09a7b7c 100644 --- a/launcher/src/gamerunner.cpp +++ b/launcher/src/gamerunner.cpp @@ -149,7 +149,7 @@ QString GameRunner::getGameArgs(const Profile &profile, const LoginAuth &auth) } } - if (m_launcher.isSteamDeck() || profile.account()->license() == Account::GameLicense::WindowsSteam) { + if (profile.account()->license() == Account::GameLicense::WindowsSteam) { gameArgs.push_back({QStringLiteral("IsSteam"), QString::number(1)}); } @@ -256,7 +256,7 @@ void GameRunner::launchExecutable(const Profile &profile, QProcess *process, con arguments.push_back(profile.winePath()); #endif - if (m_launcher.isSteamDeck() || profile.account()->license() == Account::GameLicense::WindowsSteam) { + if (profile.account()->license() == Account::GameLicense::WindowsSteam) { env.insert(QStringLiteral("IS_FFXIV_LAUNCH_FROM_STEAM"), QStringLiteral("1")); }