From 0a01e79875739d119d06ee03c92d52c4042fa0de Mon Sep 17 00:00:00 2001 From: Joshua Goins Date: Mon, 31 Jul 2023 19:00:05 -0400 Subject: [PATCH] Remove some unused debug code --- launcher/src/launchercore.cpp | 8 -------- 1 file changed, 8 deletions(-) diff --git a/launcher/src/launchercore.cpp b/launcher/src/launchercore.cpp index ea4139f..6c61d90 100755 --- a/launcher/src/launchercore.cpp +++ b/launcher/src/launchercore.cpp @@ -235,15 +235,9 @@ void LauncherCore::launchExecutable(const Profile &profile, QProcess *process, c QProcessEnvironment::systemEnvironment().value("STEAM_COMPAT_DATA_PATH"); // TODO: do these have to exist on the root steam folder? const QString protonPath = steamDirectory + "/steamapps/common/Proton 7.0"; - // env.insert("PATH", protonPath + "/dist/bin:" + QProcessEnvironment::systemEnvironment().value("PATH")); - // env.insert("WINEDLLPATH", protonPath + "/dist/lib64/wine:" + protonPath + "/dist/lib/wine"); - // env.insert("LD_LIBRARY_PATH", protonPath + "/dist/lib64:" + protonPath + "/dist/lib"); - // env.insert("WINEPREFIX", compatData + "/pfx"); env.insert("STEAM_COMPAT_CLIENT_INSTALL_PATH", steamDirectory); env.insert("STEAM_COMPAT_DATA_PATH", compatData); - qInfo() << env.toStringList(); - arguments.push_back(protonPath + "/proton"); arguments.push_back("run"); } else { @@ -274,8 +268,6 @@ void LauncherCore::launchExecutable(const Profile &profile, QProcess *process, c arguments.append(args); - qInfo() << arguments; - auto executable = arguments[0]; arguments.removeFirst();