aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFayne Aldan <FayneAldan@gmail.com>2022-10-18 14:40:34 -0600
committerGitHub <noreply@github.com>2022-10-18 14:40:34 -0600
commit888a87463ee2a81632cc85d4225fbc0b8b984026 (patch)
tree1bd9622ad5eecfa315cb0b009eeefa4498c0ed51
parent2ebaf460957edfdd286da426b4a754219149c159 (diff)
downloadPrismLauncher-888a87463ee2a81632cc85d4225fbc0b8b984026.tar.gz
PrismLauncher-888a87463ee2a81632cc85d4225fbc0b8b984026.tar.bz2
PrismLauncher-888a87463ee2a81632cc85d4225fbc0b8b984026.zip
Add fallback for multimc.cfg
Signed-off-by: Fayne Aldan <FayneAldan@gmail.com>
-rw-r--r--launcher/Application.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/launcher/Application.cpp b/launcher/Application.cpp
index b85729f0..d07ad99e 100644
--- a/launcher/Application.cpp
+++ b/launcher/Application.cpp
@@ -489,7 +489,7 @@ Application::Application(int &argc, char **argv) : QApplication(argc, argv)
// Initialize application settings
{
// Provide a fallback for migration from PolyMC
- m_settings.reset(new INISettingsObject({ BuildConfig.LAUNCHER_CONFIGFILE, "polymc.cfg" }, this));
+ m_settings.reset(new INISettingsObject({ BuildConfig.LAUNCHER_CONFIGFILE, "polymc.cfg", "multimc.cfg" }, this));
// Updates
// Multiple channels are separated by spaces
m_settings->registerSetting("UpdateChannel", BuildConfig.VERSION_CHANNEL);