aboutsummaryrefslogtreecommitdiff
path: root/engines/cruise
diff options
context:
space:
mode:
authorEugene Sandulenko2010-06-15 10:59:23 +0000
committerEugene Sandulenko2010-06-15 10:59:23 +0000
commit44a39ffbc66dbc9f019f041a47aaf9ba5a24d19f (patch)
treef86f55e3d62f5c0ebc309ba69f9fab30214acb5f /engines/cruise
parent0b83afce03572eb513dd2802a8ad4c0377600f84 (diff)
downloadscummvm-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/cruise')
-rw-r--r--engines/cruise/detection.cpp4
1 files changed, 3 insertions, 1 deletions
diff --git a/engines/cruise/detection.cpp b/engines/cruise/detection.cpp
index 9088b8261e..e43fadf598 100644
--- a/engines/cruise/detection.cpp
+++ b/engines/cruise/detection.cpp
@@ -239,7 +239,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 CruiseMetaEngine : public AdvancedMetaEngine {