diff options
author | Max Horn | 2008-06-11 06:00:56 +0000 |
---|---|---|
committer | Max Horn | 2008-06-11 06:00:56 +0000 |
commit | fefad792495e0fbd45d120a83b19090e3b7a0cf3 (patch) | |
tree | 46ac6184d0bac1cbd2488a3ea1c5d665b3f0ac3d /engines/agi | |
parent | 41ee9025ca1b88bdb5410dd87dfe8c90aadb8731 (diff) | |
download | scummvm-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/agi')
-rw-r--r-- | engines/agi/detection.cpp | 2 |
1 files changed, 1 insertions, 1 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; |