diff options
Diffstat (limited to 'engines/simon')
-rw-r--r-- | engines/simon/game.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/engines/simon/game.cpp b/engines/simon/game.cpp index 0d70fb0ca8..16f879d25d 100644 --- a/engines/simon/game.cpp +++ b/engines/simon/game.cpp @@ -1253,10 +1253,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, tstr2; |