diff options
author | David Turner | 2014-11-23 00:28:14 +0000 |
---|---|---|
committer | David Turner | 2014-11-23 00:28:14 +0000 |
commit | a665795fee18c728b65fc9c8bc4ff8f16eb214a2 (patch) | |
tree | 9f337104aae394da37aca5c26d9d9fb2c27a15b8 /engines | |
parent | f94f48ae2bdd3ad596c6bdf6a9875461079d4a7b (diff) | |
parent | c76f21747fddd0688732c7115f2a5307777a6fad (diff) | |
download | scummvm-rg350-a665795fee18c728b65fc9c8bc4ff8f16eb214a2.tar.gz scummvm-rg350-a665795fee18c728b65fc9c8bc4ff8f16eb214a2.tar.bz2 scummvm-rg350-a665795fee18c728b65fc9c8bc4ff8f16eb214a2.zip |
Merge pull request #535 from segrax/FixDemo
SCUMM: MANIAC V1 Demo: GF_DEMO was not being set
Diffstat (limited to 'engines')
-rw-r--r-- | engines/scumm/detection.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/engines/scumm/detection.cpp b/engines/scumm/detection.cpp index 10482ba1fc..c0db0d6d37 100644 --- a/engines/scumm/detection.cpp +++ b/engines/scumm/detection.cpp @@ -502,6 +502,7 @@ static void computeGameSettingsFromMD5(const Common::FSList &fslist, const GameF // (since they have identical MD5): if (dr.game.id == GID_MANIAC && !strcmp(gfp->pattern, "%02d.MAN")) { dr.extra = "V1 Demo"; + dr.game.features = GF_DEMO; } // HACK: Try to detect languages for translated games |