diff options
-rw-r--r-- | engines/mohawk/detection.cpp | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/engines/mohawk/detection.cpp b/engines/mohawk/detection.cpp index 9c3154a8bd..c3a0c17251 100644 --- a/engines/mohawk/detection.cpp +++ b/engines/mohawk/detection.cpp @@ -123,6 +123,13 @@ static const PlainGameDescriptor mohawkGames[] = { #include "mohawk/detection_tables.h" +static const char *directoryGlobs[] = { + "all", + "assets1", + "data", + 0 +}; + static const ADParams detectionParams = { // Pointer to ADGameDescription or its superset structure (const byte *)Mohawk::gameDescriptions, @@ -145,7 +152,7 @@ static const ADParams detectionParams = { // Maximum directory depth 2, // List of directory globs - 0 + directoryGlobs }; class MohawkMetaEngine : public AdvancedMetaEngine { |