SCUMM: Correct fix for regressions in The Dig demos, and remove the hack for demos.

This commit is contained in:
Kirben 2014-09-19 19:38:16 +10:00
parent a1548e27a0
commit 9dfadc7d9c
2 changed files with 7 additions and 10 deletions

View file

@ -504,12 +504,6 @@ static void computeGameSettingsFromMD5(const Common::FSList &fslist, const GameF
dr.extra = "V1 Demo";
}
// HACK: If 'Demo' occurs in the extra string, set the GF_DEMO flag,
// required by some game demos (e.g. Dig, FT and COMI).
if (dr.extra && strstr(dr.extra, "Demo")) {
dr.game.features |= GF_DEMO;
}
// HACK: Try to detect languages for translated games
if (dr.language == UNK_LANG) {
dr.language = detectLanguage(fslist, dr.game.id);