fix: add fallback for polymc.cfg

Signed-off-by: flow <flowlnlnln@gmail.com>
This commit is contained in:
flow 2022-10-18 12:00:47 -03:00
parent 801e7da5ee
commit 32cdfb871c
No known key found for this signature in database
GPG Key ID: 8D0F221F0A59F469

View File

@ -488,7 +488,8 @@ Application::Application(int &argc, char **argv) : QApplication(argc, argv)
// Initialize application settings
{
m_settings.reset(new INISettingsObject(BuildConfig.LAUNCHER_CONFIGFILE, this));
// Provide a fallback for migration from PolyMC
m_settings.reset(new INISettingsObject({ BuildConfig.LAUNCHER_CONFIGFILE, "polymc.cfg" }, this));
// Updates
// Multiple channels are separated by spaces
m_settings->registerSetting("UpdateChannel", BuildConfig.VERSION_CHANNEL);