diff options
author | Johannes Schickel | 2011-01-13 16:38:14 +0000 |
---|---|---|
committer | Johannes Schickel | 2011-01-13 16:38:14 +0000 |
commit | da6fdff421d8f8ccb37d3c31c12dec12fab4cea4 (patch) | |
tree | 96233aa3d4780b793a8326b3b8ea0dc1e4f6da3f /common | |
parent | 4e56df4dbd70c6610263a645c029a03e79801a0d (diff) | |
download | scummvm-rg350-da6fdff421d8f8ccb37d3c31c12dec12fab4cea4.tar.gz scummvm-rg350-da6fdff421d8f8ccb37d3c31c12dec12fab4cea4.tar.bz2 scummvm-rg350-da6fdff421d8f8ccb37d3c31c12dec12fab4cea4.zip |
COMMON: Some slight formatting fixes in config-manager.cpp.
svn-id: r55228
Diffstat (limited to 'common')
-rw-r--r-- | common/config-manager.cpp | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/common/config-manager.cpp b/common/config-manager.cpp index a6fc67107e..98c1548214 100644 --- a/common/config-manager.cpp +++ b/common/config-manager.cpp @@ -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)) |