COMMON: Some slight formatting fixes in config-manager.cpp.

svn-id: r55228
This commit is contained in:
Johannes Schickel 2011-01-13 16:38:14 +00:00
parent 4e56df4dbd
commit da6fdff421

View File

@ -131,12 +131,12 @@ void ConfigManager::addDomain(const Common::String &domainName, const ConfigMana
_gameDomains[domainName] = domain;
_domainSaveOrder.push_back(domainName);
// Check if we have the same misc domain. For older config files
// we could have 'ghost' domains with the same name, so delete
// the ghost domain
if (_miscDomains.contains(domainName))
_miscDomains.erase(domainName);
// Check if we have the same misc domain. For older config files
// we could have 'ghost' domains with the same name, so delete
// the ghost domain
if (_miscDomains.contains(domainName))
_miscDomains.erase(domainName);
} else {
// Otherwise it's a miscellaneous domain
if (_miscDomains.contains(domainName))