diff options
| -rw-r--r-- | engines/groovie/detection.cpp | 9 | 
1 files changed, 9 insertions, 0 deletions
diff --git a/engines/groovie/detection.cpp b/engines/groovie/detection.cpp index cb0f2296fb..2065307ca9 100644 --- a/engines/groovie/detection.cpp +++ b/engines/groovie/detection.cpp @@ -206,6 +206,15 @@ class GroovieMetaEngine : public AdvancedMetaEngine {  public:  	GroovieMetaEngine() : AdvancedMetaEngine(gameDescriptions, sizeof(GroovieGameDescription), groovieGames) {  		_singleid = "groovie"; + +		// Use kADFlagUseExtraAsHint in order to distinguish the 11th hour from +		// its "Making of" as well as the Clandestiny Trailer; they all share +		// the same MD5. +		// TODO: Is this the only reason, or are there others (like the three +		// potentially sharing a single directory) ? In the former case, then +		// perhaps a better solution would be to add additional files +		// to the detection entries. In the latter case, this TODO should be +		// replaced with an according explanation.  		_flags = kADFlagUseExtraAsHint;  		_guioptions = Common::GUIO_NOSUBTITLES | Common::GUIO_NOSFX;  	}  | 
