aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMax Horn2011-06-14 16:48:45 +0200
committerMax Horn2011-06-14 18:52:09 +0200
commit3b5863834bbd97de521af3d6ee2441ea2d609d14 (patch)
treef91f5dc0dfe80435299b342c2c9e95059c29dbf7
parent7e7748d69257d0cc24cfccd51c0d6b7d9213a986 (diff)
downloadscummvm-rg350-3b5863834bbd97de521af3d6ee2441ea2d609d14.tar.gz
scummvm-rg350-3b5863834bbd97de521af3d6ee2441ea2d609d14.tar.bz2
scummvm-rg350-3b5863834bbd97de521af3d6ee2441ea2d609d14.zip
GROOVIE: Document why I *think* kADFlagUseExtraAsHint is used
-rw-r--r--engines/groovie/detection.cpp9
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;
}