From 386aeda14f50a5252ae8077a27cd2808c3381573 Mon Sep 17 00:00:00 2001 From: Joshua Goins Date: Thu, 21 Dec 2023 20:08:27 -0500 Subject: [PATCH] Remove hardcoded DXVK_HUD --- launcher/src/gamerunner.cpp | 4 ---- 1 file changed, 4 deletions(-) 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); }