1
Fork 0
mirror of https://github.com/redstrate/Astra.git synced 2025-04-23 04:57:44 +00:00

Remove hardcoded DXVK_HUD

This commit is contained in:
Joshua Goins 2023-12-21 20:08:27 -05:00
parent 8d4ee7b19d
commit 386aeda14f

View file

@ -230,7 +230,6 @@ void GameRunner::launchExecutable(const Profile &profile, QProcess *process, con
const QString logDir = Utility::stateDirectory().absoluteFilePath(QStringLiteral("log"));
env.insert(QStringLiteral("DXVK_LOG_PATH"), logDir);
env.insert(QStringLiteral("DXVK_HUD"), QStringLiteral("full"));
#endif
#if defined(Q_OS_MAC) || defined(Q_OS_LINUX)
@ -253,9 +252,6 @@ void GameRunner::launchExecutable(const Profile &profile, QProcess *process, con
process->setProcessEnvironment(env);
qInfo() << env.toStringList();
qInfo() << executable << arguments;
process->start(executable, arguments);
}