diff --git a/launcher/src/gamerunner.cpp b/launcher/src/gamerunner.cpp index 1f569ba..9cbbd47 100644 --- a/launcher/src/gamerunner.cpp +++ b/launcher/src/gamerunner.cpp @@ -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); }