diff options
author | Max Horn | 2011-06-14 16:36:54 +0200 |
---|---|---|
committer | Max Horn | 2011-06-14 18:52:08 +0200 |
commit | 7e7748d69257d0cc24cfccd51c0d6b7d9213a986 (patch) | |
tree | 95968f8ca081faae83eb58182ec78d5ff9cc7ba6 /engines/lure | |
parent | e6f6d67bddd2a3f258616d00049ca12823bc4f74 (diff) | |
download | scummvm-rg350-7e7748d69257d0cc24cfccd51c0d6b7d9213a986.tar.gz scummvm-rg350-7e7748d69257d0cc24cfccd51c0d6b7d9213a986.tar.bz2 scummvm-rg350-7e7748d69257d0cc24cfccd51c0d6b7d9213a986.zip |
LURE: Add a comment explaining why kADFlagUseExtraAsHint is used
For the records, this was introduced by Eugene in SVN revision 30106,
corresponding to git commit b87b0f21
Diffstat (limited to 'engines/lure')
-rw-r--r-- | engines/lure/detection.cpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/engines/lure/detection.cpp b/engines/lure/detection.cpp index 397d965396..081625863d 100644 --- a/engines/lure/detection.cpp +++ b/engines/lure/detection.cpp @@ -180,6 +180,9 @@ public: LureMetaEngine() : AdvancedMetaEngine(Lure::gameDescriptions, sizeof(Lure::LureGameDescription), lureGames) { _md5Bytes = 1024; _singleid = "lure"; + + // Use kADFlagUseExtraAsHint to distinguish between EGA and VGA versions + // of italian Lure when their datafiles sit in the same directory. _flags = kADFlagUseExtraAsHint; _guioptions = Common::GUIO_NOSPEECH; } |