Skip to content

Commit

Permalink
Maybe DON'T assume the runtime is always updated when making prefixes?
Browse files Browse the repository at this point in the history
  • Loading branch information
SeongGino committed Dec 5, 2024
1 parent 5f11083 commit 6008a7e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/neromanager.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -281,7 +281,7 @@ void NeroManagerWindow::CreatePrefix(const QString &newPrefix, const QString &ru
env.insert("WINEPREFIX", NeroFS::GetPrefixesPath().path() + '/' + newPrefix);
env.insert("GAMEID", "0");
env.insert("PROTONPATH", NeroFS::GetProtonsPath().path() + '/' + runner);
env.insert("UMU_RUNTIME_UPDATE", "0");
//env.insert("UMU_RUNTIME_UPDATE", "0");
umu.setProcessEnvironment(env);
umu.setProcessChannelMode(QProcess::MergedChannels);

Expand Down Expand Up @@ -409,7 +409,7 @@ void NeroManagerWindow::AddTricks(QStringList verbs, const QString &prefix)
env.insert("WINEPREFIX", NeroFS::GetPrefixesPath().path() + '/' + prefix);
env.insert("GAMEID", "0");
env.insert("PROTONPATH", NeroFS::GetProtonsPath().path() + '/' + settingsMap["CurrentRunner"].toString());
env.insert("UMU_RUNTIME_UPDATE", "0");
//env.insert("UMU_RUNTIME_UPDATE", "0");
umu.setProcessEnvironment(env);
umu.setProcessChannelMode(QProcess::MergedChannels);

Expand Down

0 comments on commit 6008a7e

Please sign in to comment.