1
Fork 0
mirror of https://github.com/redstrate/Astra.git synced 2025-04-20 11:47:46 +00:00

Revert "Test to try initializing Steam API"

This reverts commit 8d246bc8e1.
This commit is contained in:
Joshua Goins 2024-04-01 22:47:20 -04:00
parent 8d246bc8e1
commit bb1eb8ea4c

View file

@ -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"));
}