From c6899c42fe2677582891b2c3bfbe6b07b80ee09d Mon Sep 17 00:00:00 2001 From: Joshua Goins Date: Sat, 23 Dec 2023 10:29:12 -0500 Subject: [PATCH] Set resetconfig to 0 --- launcher/src/gamerunner.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/launcher/src/gamerunner.cpp b/launcher/src/gamerunner.cpp index 9cbbd47..0958284 100644 --- a/launcher/src/gamerunner.cpp +++ b/launcher/src/gamerunner.cpp @@ -136,6 +136,7 @@ QString GameRunner::getGameArgs(const Profile &profile, const LoginAuth &auth) gameArgs.push_back({QStringLiteral("language"), QString::number(profile.account()->language())}); gameArgs.push_back({QStringLiteral("ver"), profile.baseGameVersion()}); gameArgs.push_back({QStringLiteral("UserPath"), Utility::toWindowsPath(profile.account()->getConfigDir().absolutePath())}); + gameArgs.push_back({QStringLiteral("resetconfig"), QStringLiteral("0")}); // FIXME: this should belong somewhere else... Utility::createPathIfNeeded(profile.account()->getConfigDir().absolutePath());