aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTorbjörn Andersson2006-07-08 20:20:07 +0000
committerTorbjörn Andersson2006-07-08 20:20:07 +0000
commit07ffde92706f3725c44978c477b2b987a4aa2cf0 (patch)
treef6b6fdda23ee82e0249fd60115a7758983d7326e
parent03ef03887a079abc61672d27f99b271fe2b807a1 (diff)
downloadscummvm-rg350-07ffde92706f3725c44978c477b2b987a4aa2cf0.tar.gz
scummvm-rg350-07ffde92706f3725c44978c477b2b987a4aa2cf0.tar.bz2
scummvm-rg350-07ffde92706f3725c44978c477b2b987a4aa2cf0.zip
Fixed typo in comment.
svn-id: r23435
-rw-r--r--common/config-manager.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/common/config-manager.cpp b/common/config-manager.cpp
index 82c805b663..69f65a6173 100644
--- a/common/config-manager.cpp
+++ b/common/config-manager.cpp
@@ -431,7 +431,7 @@ int ConfigManager::getInt(const String &key, const String &domName) const {
if (value.empty())
return 0;
- // We zse the special value '0' for the base passed to strtol. Doing that
+ // We use the special value '0' for the base passed to strtol. Doing that
// makes it possible to enter hex values as "0x1234", but also decimal
// values ("123") are still valid.
int ivalue = (int)strtol(value.c_str(), &errpos, 0);