Skip to content

Commit

Permalink
SCUMM: MANIAC - Also set GF_DEMO feature if we are using the demo/kio…
Browse files Browse the repository at this point in the history
…sk mode checkbox.
  • Loading branch information
robertmegone committed Sep 4, 2024
1 parent 8a0e50f commit 194fab6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion engines/scumm/scumm.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -246,7 +246,7 @@ ScummEngine::ScummEngine(OSystem *syst, const DetectorResult &dr)
_debugMode = true;

_copyProtection = ConfMan.getBool("copy_protection");
if (ConfMan.getBool("demo_mode"))
if (ConfMan.getBool("demo_mode")||ConfMan.getBool("enable_demo_mode"))
_game.features |= GF_DEMO;
if (ConfMan.hasKey("nosubtitles")) {
// We replaced nosubtitles *ages* ago. Just convert it silently
Expand Down

0 comments on commit 194fab6

Please sign in to comment.