diff --git a/code/ryzom/tools/client/ryzom_installer/src/configfile.cpp b/code/ryzom/tools/client/ryzom_installer/src/configfile.cpp index 241dbeed0..f59ee44df 100644 --- a/code/ryzom/tools/client/ryzom_installer/src/configfile.cpp +++ b/code/ryzom/tools/client/ryzom_installer/src/configfile.cpp @@ -49,7 +49,12 @@ CConfigFile::~CConfigFile() bool CConfigFile::load() { // load default values - return load(m_defaultConfigPath) || load(m_configPath); + if (!load(m_defaultConfigPath)) return false; + + // ignore return value, since we'll always have valid values + load(m_configPath); + + return true; } bool CConfigFile::load(const QString &filename)