diff options
author | Sven Hesse | 2012-06-27 04:42:36 +0200 |
---|---|---|
committer | Sven Hesse | 2012-06-27 05:14:18 +0200 |
commit | 2c760cb15e27de29ef9262cb6e2a102d8dbe3935 (patch) | |
tree | ff8a65fcd1d1d70fc75f04696e6efdd6c6a7e47b /engines/touche | |
parent | 63e13c5d2c48c0a9aba72a0f63dc4aa515972da5 (diff) | |
download | scummvm-rg350-2c760cb15e27de29ef9262cb6e2a102d8dbe3935.tar.gz scummvm-rg350-2c760cb15e27de29ef9262cb6e2a102d8dbe3935.tar.bz2 scummvm-rg350-2c760cb15e27de29ef9262cb6e2a102d8dbe3935.zip |
DETECTOR: Make detectGameFilebased() return a list of MD5s and file sizes
Since we need a FSNode parent for Mac resource forks, we need to change
signature of detectGameFilebased(), too.
Diffstat (limited to 'engines/touche')
-rw-r--r-- | engines/touche/detection.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/touche/detection.cpp b/engines/touche/detection.cpp index 35dd54776f..2566597e6c 100644 --- a/engines/touche/detection.cpp +++ b/engines/touche/detection.cpp @@ -135,7 +135,7 @@ public: } virtual const ADGameDescription *fallbackDetect(const FileMap &allFiles, const Common::FSList &fslist) const { - const ADGameDescription *matchedDesc = detectGameFilebased(allFiles, Touche::fileBasedFallback); + const ADGameDescription *matchedDesc = detectGameFilebased(allFiles, fslist, Touche::fileBasedFallback); if (matchedDesc) { // We got a match Common::String report = Common::String::format(_("Your game version has been detected using " |