diff options
Diffstat (limited to 'engines/pink/detection.cpp')
-rw-r--r-- | engines/pink/detection.cpp | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/engines/pink/detection.cpp b/engines/pink/detection.cpp index 71b353526f..d64354885c 100644 --- a/engines/pink/detection.cpp +++ b/engines/pink/detection.cpp @@ -32,10 +32,18 @@ static const PlainGameDescriptor pinkGames[] = { #include "detection_tables.h" +static const char *directoryGlobs[] = { + "install", + nullptr +}; + + class PinkMetaEngine : public AdvancedMetaEngine { public: PinkMetaEngine() : AdvancedMetaEngine(Pink::gameDescriptions, sizeof(ADGameDescription), pinkGames) { _gameIds = pinkGames; + _maxScanDepth = 2; + _directoryGlobs = directoryGlobs; } virtual const char *getName() const { |