diff options
-rw-r--r-- | engines/agos/detection.cpp | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/engines/agos/detection.cpp b/engines/agos/detection.cpp index cec2db2c10..646e63dacf 100644 --- a/engines/agos/detection.cpp +++ b/engines/agos/detection.cpp @@ -84,6 +84,11 @@ static const PlainGameDescriptor simonGames[] = { #include "agos/detection_tables.h" +static const char *directoryGlobs[] = { + "execute", // Used by Simon1 Acorn CD + 0 +}; + static const ADParams detectionParams = { // Pointer to ADGameDescription or its superset structure (const byte *)AGOS::gameDescriptions, @@ -106,7 +111,7 @@ static const ADParams detectionParams = { // Maximum directory depth 2, // List of directory globs - 0 + directoryGlobs }; using namespace AGOS; |