aboutsummaryrefslogtreecommitdiff
path: root/engines/made/detection.cpp
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/made/detection.cpp
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/made/detection.cpp')
-rw-r--r--engines/made/detection.cpp4
1 files changed, 3 insertions, 1 deletions
diff --git a/engines/made/detection.cpp b/engines/made/detection.cpp
index 081bb98006..dd2becd3b8 100644
--- a/engines/made/detection.cpp
+++ b/engines/made/detection.cpp
@@ -495,7 +495,9 @@ static const ADParams detectionParams = {
// Additional GUI options (for every game}
Common::GUIO_NONE,
// Maximum directory depth
- 1
+ 1,
+ // List of directory globs
+ 0
};
class MadeMetaEngine : public AdvancedMetaEngine {