aboutsummaryrefslogtreecommitdiff
path: root/engines/saga/game.cpp
diff options
context:
space:
mode:
authorMax Horn2006-04-08 11:38:41 +0000
committerMax Horn2006-04-08 11:38:41 +0000
commitdc77d02c7e63ab9185870a8c6028ccab9dbbf716 (patch)
tree4038a801a26a60cd9a8bc18ecf5cf5de248f9220 /engines/saga/game.cpp
parent4572d0ba16b36bead1c02ec07b5c7ff357e0bc95 (diff)
downloadscummvm-rg350-dc77d02c7e63ab9185870a8c6028ccab9dbbf716.tar.gz
scummvm-rg350-dc77d02c7e63ab9185870a8c6028ccab9dbbf716.tar.bz2
scummvm-rg350-dc77d02c7e63ab9185870a8c6028ccab9dbbf716.zip
Removed common/map.h with the Common::Map template class (it was a very bad implementation, and our HashMap is simply better).
svn-id: r21688
Diffstat (limited to 'engines/saga/game.cpp')
-rw-r--r--engines/saga/game.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/engines/saga/game.cpp b/engines/saga/game.cpp
index 63cf3f074e..20a2d39d16 100644
--- a/engines/saga/game.cpp
+++ b/engines/saga/game.cpp
@@ -28,7 +28,7 @@
#include "common/file.h"
#include "common/md5.h"
-#include "common/map.h"
+#include "common/hashmap.h"
#include "common/config-manager.h"
#include "base/plugins.h"
#include "base/gameDetector.h"
@@ -1508,10 +1508,10 @@ static int detectGame(const FSList *fslist, Common::Language language, Common::P
int gamesCount = ARRAYSIZE(gameDescriptions);
int filesCount;
- typedef Common::Map<Common::String, bool> StringSet;
+ typedef Common::HashMap<Common::String, bool> StringSet;
StringSet filesList;
- typedef Common::Map<Common::String, Common::String> StringMap;
+ typedef Common::HashMap<Common::String, Common::String> StringMap;
StringMap filesMD5;
Common::String tstr;