aboutsummaryrefslogtreecommitdiff
path: root/engines
diff options
context:
space:
mode:
authorMax Horn2008-06-11 06:00:56 +0000
committerMax Horn2008-06-11 06:00:56 +0000
commitfefad792495e0fbd45d120a83b19090e3b7a0cf3 (patch)
tree46ac6184d0bac1cbd2488a3ea1c5d665b3f0ac3d /engines
parent41ee9025ca1b88bdb5410dd87dfe8c90aadb8731 (diff)
downloadscummvm-rg350-fefad792495e0fbd45d120a83b19090e3b7a0cf3.tar.gz
scummvm-rg350-fefad792495e0fbd45d120a83b19090e3b7a0cf3.tar.bz2
scummvm-rg350-fefad792495e0fbd45d120a83b19090e3b7a0cf3.zip
No need to specify CaseSensitiveString_Hash explicitly anymore
svn-id: r32663
Diffstat (limited to 'engines')
-rw-r--r--engines/agi/detection.cpp2
-rw-r--r--engines/cine/cine.h2
2 files changed, 2 insertions, 2 deletions
diff --git a/engines/agi/detection.cpp b/engines/agi/detection.cpp
index f526c51a27..cd6942f9c0 100644
--- a/engines/agi/detection.cpp
+++ b/engines/agi/detection.cpp
@@ -2148,7 +2148,7 @@ bool AgiMetaEngine::createInstance(OSystem *syst, Engine **engine, const Common:
}
const Common::ADGameDescription *AgiMetaEngine::fallbackDetect(const FSList *fslist) const {
- typedef Common::HashMap<Common::String, int32, Common::CaseSensitiveString_Hash, Common::CaseSensitiveString_EqualTo> IntMap;
+ typedef Common::HashMap<Common::String, int32> IntMap;
IntMap allFiles;
bool matchedUsingFilenames = false;
bool matchedUsingWag = false;
diff --git a/engines/cine/cine.h b/engines/cine/cine.h
index 7ce5231446..710840c17e 100644
--- a/engines/cine/cine.h
+++ b/engines/cine/cine.h
@@ -64,7 +64,7 @@ enum CineGameFeatures {
struct CINEGameDescription;
-typedef Common::HashMap<Common::String, const char *, Common::CaseSensitiveString_Hash, Common::CaseSensitiveString_EqualTo> StringPtrHashMap;
+typedef Common::HashMap<Common::String, const char *> StringPtrHashMap;
class CineEngine : public Engine {