aboutsummaryrefslogtreecommitdiff
path: root/saga
diff options
context:
space:
mode:
authorMax Horn2005-04-23 14:28:59 +0000
committerMax Horn2005-04-23 14:28:59 +0000
commit29d249c696252820d61eed6c42498d0941fa1339 (patch)
tree43acd4287f1a85cb6af93648653cc12e31530dee /saga
parent78b340adfb5d49faae8042806f89bf2defae7f54 (diff)
downloadscummvm-rg350-29d249c696252820d61eed6c42498d0941fa1339.tar.gz
scummvm-rg350-29d249c696252820d61eed6c42498d0941fa1339.tar.bz2
scummvm-rg350-29d249c696252820d61eed6c42498d0941fa1339.zip
Remove StringMap class from map.h (at least for now)
svn-id: r17772
Diffstat (limited to 'saga')
-rw-r--r--saga/game.cpp5
1 files changed, 3 insertions, 2 deletions
diff --git a/saga/game.cpp b/saga/game.cpp
index 4d1672a532..5689dd96f9 100644
--- a/saga/game.cpp
+++ b/saga/game.cpp
@@ -753,7 +753,8 @@ DetectedGameList GAME_ProbeGame(const FSList &fslist) {
int detectGame(const FSList &fslist, bool mode) {
int game_count = ARRAYSIZE(gameDescriptions);
int game_n = -1;
- Common::StringMap filesMD5;
+ typedef Common::Map<Common::String, Common::String> StringMap;
+ StringMap filesMD5;
typedef Common::Map<Common::String, bool> StringSet;
StringSet filesList;
@@ -861,7 +862,7 @@ int detectGame(const FSList &fslist, bool mode) {
printf("MD5s of your ITE version are unknown. Please, report following data to\n");
printf("ScummVM team along with your ITE version:\n");
- for (Common::StringMap::const_iterator file = filesMD5.begin(); file != filesMD5.end(); ++file)
+ for (StringMap::const_iterator file = filesMD5.begin(); file != filesMD5.end(); ++file)
printf("%s: %s\n", file->_key.c_str(), file->_value.c_str());
}