From 7d06821c9680986cb1096a5ce5bed7d992b2ec85 Mon Sep 17 00:00:00 2001 From: kervala Date: Wed, 27 Jul 2016 12:42:24 +0200 Subject: [PATCH] Fixed: Wrong checks, see #279 --HG-- branch : develop --- code/ryzom/tools/client/ryzom_installer/src/configfile.cpp | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/code/ryzom/tools/client/ryzom_installer/src/configfile.cpp b/code/ryzom/tools/client/ryzom_installer/src/configfile.cpp index 953266b15..204f86229 100644 --- a/code/ryzom/tools/client/ryzom_installer/src/configfile.cpp +++ b/code/ryzom/tools/client/ryzom_installer/src/configfile.cpp @@ -165,9 +165,7 @@ CConfigFile::~CConfigFile() bool CConfigFile::load() { // load default values - load(m_defaultConfigPath); - - return load(m_configPath); + return load(m_defaultConfigPath) || load(m_configPath); } bool CConfigFile::load(const QString &filename)