aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPaul Gilbert2018-04-12 19:19:00 -0400
committerPaul Gilbert2018-04-12 19:19:00 -0400
commit492605025c60866d21a4099abc00648978adeedd (patch)
tree8747ebb91022ae536ccc8e3197b8542c6d63ec90
parent55c2a6001c9213b58431b2bcbed5d8de448cf6d9 (diff)
downloadscummvm-rg350-492605025c60866d21a4099abc00648978adeedd.tar.gz
scummvm-rg350-492605025c60866d21a4099abc00648978adeedd.tar.bz2
scummvm-rg350-492605025c60866d21a4099abc00648978adeedd.zip
MADS: NEBULAR: Disable the copy protection dialog by default
The GOG release is confirmed as having it disabled, so ScummVM will do likewise and have it disabled by default
-rw-r--r--engines/mads/nebular/game_nebular.cpp5
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;