diff options
author | Max Horn | 2002-10-08 23:58:55 +0000 |
---|---|---|
committer | Max Horn | 2002-10-08 23:58:55 +0000 |
commit | 735e310ac55dadf597d02616e82a0360370184d9 (patch) | |
tree | c0d441cb196ee5a381eff88c2c7a1a6c5f2ec5b1 | |
parent | 621b9a5a9eb42a66b72bc8ef08ddcae194980cee (diff) | |
download | scummvm-rg350-735e310ac55dadf597d02616e82a0360370184d9.tar.gz scummvm-rg350-735e310ac55dadf597d02616e82a0360370184d9.tar.bz2 scummvm-rg350-735e310ac55dadf597d02616e82a0360370184d9.zip |
fix for bug #620361
svn-id: r5113
-rw-r--r-- | common/config-file.cpp | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/common/config-file.cpp b/common/config-file.cpp index 5ac3988e13..d772dff812 100644 --- a/common/config-file.cpp +++ b/common/config-file.cpp @@ -169,7 +169,9 @@ void Config::set_domain(const String &d) bool Config::has_domain(const String &d) const { - return domains.contains(d); + String temp = d; + temp.toLowercase(); + return domains.contains(temp); } void Config::flush() const |