aboutsummaryrefslogtreecommitdiff
path: root/engines/wage
diff options
context:
space:
mode:
Diffstat (limited to 'engines/wage')
-rw-r--r--engines/wage/detection.cpp10
1 files changed, 9 insertions, 1 deletions
diff --git a/engines/wage/detection.cpp b/engines/wage/detection.cpp
index 3c5ac732d8..fcdc5df890 100644
--- a/engines/wage/detection.cpp
+++ b/engines/wage/detection.cpp
@@ -66,6 +66,10 @@ static const ADGameDescription gameDescriptions[] = {
} // End of namespace Wage
+static const char *directoryGlobs[] = {
+ 0
+};
+
static const ADParams detectionParams = {
// Pointer to ADGameDescription or its superset structure
(const byte *)Wage::gameDescriptions,
@@ -84,7 +88,11 @@ static const ADParams detectionParams = {
// Flags
0,
// Additional GUI options (for every game}
- Common::GUIO_NOSPEECH | Common::GUIO_NOMIDI
+ Common::GUIO_NOSPEECH | Common::GUIO_NOMIDI,
+ // Maximum directory depth
+ 0,
+ // List of directory globs
+ directoryGlobs
};
class WageMetaEngine : public AdvancedMetaEngine {