diff options
author | Eugene Sandulenko | 2010-06-15 11:00:07 +0000 |
---|---|---|
committer | Eugene Sandulenko | 2010-06-15 11:00:07 +0000 |
commit | 03ed49169c22cf169369ccec005e6e6e6cb129dd (patch) | |
tree | 1989e89141e08a3edd6a0d8c90bb0367ef9b2dec /engines/agos | |
parent | f2a62bb1f5bdc422eda47b5d673614e02d796035 (diff) | |
download | scummvm-rg350-03ed49169c22cf169369ccec005e6e6e6cb129dd.tar.gz scummvm-rg350-03ed49169c22cf169369ccec005e6e6e6cb129dd.tar.bz2 scummvm-rg350-03ed49169c22cf169369ccec005e6e6e6cb129dd.zip |
AGOS: Readd Simon1 Acorn CD detection.
svn-id: r49790
Diffstat (limited to 'engines/agos')
-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; |