diff options
author | Filippos Karapetis | 2016-09-17 22:34:05 +0300 |
---|---|---|
committer | Filippos Karapetis | 2016-10-03 00:32:40 +0300 |
commit | 9dd2e5d24ede940ab29b4abbaf823041910a893d (patch) | |
tree | 2abb52b71152bf2304092f7d15c0434def230b3f /engines/chewy | |
parent | 77e60faa03317a874b42cdcbe54050520e015fbe (diff) | |
download | scummvm-rg350-9dd2e5d24ede940ab29b4abbaf823041910a893d.tar.gz scummvm-rg350-9dd2e5d24ede940ab29b4abbaf823041910a893d.tar.bz2 scummvm-rg350-9dd2e5d24ede940ab29b4abbaf823041910a893d.zip |
CHEWY: Implement detection for the English version
Diffstat (limited to 'engines/chewy')
-rw-r--r-- | engines/chewy/detection.cpp | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/engines/chewy/detection.cpp b/engines/chewy/detection.cpp index b7371b65a3..57435ad31a 100644 --- a/engines/chewy/detection.cpp +++ b/engines/chewy/detection.cpp @@ -50,6 +50,10 @@ static const PlainGameDescriptor chewyGames[] = { {0, 0} }; +static const char *directoryGlobs[] = { + "back", + 0 +}; namespace Chewy { @@ -59,7 +63,7 @@ static const ChewyGameDescription gameDescriptions[] = { { "chewy", 0, - AD_ENTRY1s("XXX", "00000000000000000", 1), + AD_ENTRY1s("comic.tgp", "4f03228838663ddecebd750c04687a08", 6529814), Common::EN_ANY, Common::kPlatformDOS, ADGF_NO_FLAGS, @@ -75,6 +79,8 @@ static const ChewyGameDescription gameDescriptions[] = { class ChewyMetaEngine : public AdvancedMetaEngine { public: ChewyMetaEngine() : AdvancedMetaEngine(Chewy::gameDescriptions, sizeof(Chewy::ChewyGameDescription), chewyGames) { + _maxScanDepth = 2; + _directoryGlobs = directoryGlobs; _singleId = "chewy"; } |