aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTravis Howell2004-04-11 04:20:09 +0000
committerTravis Howell2004-04-11 04:20:09 +0000
commit25df782332abd40621108737e05f090184e60e39 (patch)
treea348dbc05cd79bd6910eeff19865e8008e296152
parent6bf0cce89c07e9d61295b92e4d25d012286f91d4 (diff)
downloadscummvm-rg350-25df782332abd40621108737e05f090184e60e39.tar.gz
scummvm-rg350-25df782332abd40621108737e05f090184e60e39.tar.bz2
scummvm-rg350-25df782332abd40621108737e05f090184e60e39.zip
Allow copy protection in FOA (Disk) to be enabled.
svn-id: r13536
-rw-r--r--scumm/scumm.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/scumm/scumm.cpp b/scumm/scumm.cpp
index 7bf05f0245..82f335f595 100644
--- a/scumm/scumm.cpp
+++ b/scumm/scumm.cpp
@@ -929,7 +929,7 @@ void ScummEngine::launch() {
// if (_gameId==GID_MONKEY2 && _bootParam == 0)
// _bootParam = 10001;
- if (_gameId == GID_INDY4 && _bootParam == 0) {
+ if (!_copyProtection && _gameId == GID_INDY4 && _bootParam == 0) {
_bootParam = -7873;
}