diff options
author | Eugene Sandulenko | 2010-06-15 10:59:23 +0000 |
---|---|---|
committer | Eugene Sandulenko | 2010-06-15 10:59:23 +0000 |
commit | 44a39ffbc66dbc9f019f041a47aaf9ba5a24d19f (patch) | |
tree | f86f55e3d62f5c0ebc309ba69f9fab30214acb5f /engines/cine | |
parent | 0b83afce03572eb513dd2802a8ad4c0377600f84 (diff) | |
download | scummvm-rg350-44a39ffbc66dbc9f019f041a47aaf9ba5a24d19f.tar.gz scummvm-rg350-44a39ffbc66dbc9f019f041a47aaf9ba5a24d19f.tar.bz2 scummvm-rg350-44a39ffbc66dbc9f019f041a47aaf9ba5a24d19f.zip |
AdvancedDetector: Add new parameter directoryGlobs.
Without this parameter mass detection gave tons of false alarms.
Use globbing for narrowing down the depth search.
svn-id: r49788
Diffstat (limited to 'engines/cine')
-rw-r--r-- | engines/cine/detection.cpp | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/engines/cine/detection.cpp b/engines/cine/detection.cpp index bcc4951140..b92ad8a0a2 100644 --- a/engines/cine/detection.cpp +++ b/engines/cine/detection.cpp @@ -82,7 +82,9 @@ static const ADParams detectionParams = { // Additional GUI options (for every game} Common::GUIO_NOSPEECH | Common::GUIO_NOMIDI, // Maximum directory depth - 1 + 1, + // List of directory globs + 0 }; class CineMetaEngine : public AdvancedMetaEngine { |