diff options
author | Max Horn | 2006-04-08 11:38:41 +0000 |
---|---|---|
committer | Max Horn | 2006-04-08 11:38:41 +0000 |
commit | dc77d02c7e63ab9185870a8c6028ccab9dbbf716 (patch) | |
tree | 4038a801a26a60cd9a8bc18ecf5cf5de248f9220 /engines/scumm | |
parent | 4572d0ba16b36bead1c02ec07b5c7ff357e0bc95 (diff) | |
download | scummvm-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/scumm')
-rw-r--r-- | engines/scumm/plugin.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/scumm/plugin.cpp b/engines/scumm/plugin.cpp index 2e57dcbbba..6b7de39c6f 100644 --- a/engines/scumm/plugin.cpp +++ b/engines/scumm/plugin.cpp @@ -951,7 +951,7 @@ DetectedGameList Engine_SCUMM_detectGames(const FSList &fslist) { char tempName[128]; SubstResFileNames subst = { 0, 0, kGenAsIs }; - typedef Common::Map<Common::String, bool> StringSet; + typedef Common::HashMap<Common::String, bool> StringSet; StringSet fileSet; for (g = scumm_settings; g->gameid; ++g) { |