diff options
Diffstat (limited to 'engines')
-rw-r--r-- | engines/mads/nebular/game_nebular.cpp | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/engines/mads/nebular/game_nebular.cpp b/engines/mads/nebular/game_nebular.cpp index 1db5eaea00..99402748b8 100644 --- a/engines/mads/nebular/game_nebular.cpp +++ b/engines/mads/nebular/game_nebular.cpp @@ -45,8 +45,9 @@ GameNebular::GameNebular(MADSEngine *vm) } ProtectionResult GameNebular::checkCopyProtection() { - //if (!ConfMan.getBool("copy_protection")) - // return PROTECTION_SUCCEED; + // Only show copy protection dialog if explicitly wanted + if (!ConfMan.getBool("copy_protection")) + return PROTECTION_SUCCEED; CopyProtectionDialog *dlg; bool correctAnswer; |