aboutsummaryrefslogtreecommitdiff
path: root/scumm/script.cpp
diff options
context:
space:
mode:
authorTravis Howell2004-08-21 09:02:45 +0000
committerTravis Howell2004-08-21 09:02:45 +0000
commit01c0cb3d8f2e227baafe079f9528b9e9b2da115b (patch)
tree7bc758210bfac26a81ddbca9c1b09e3e551deb84 /scumm/script.cpp
parentb318794cc1ae531ce7ed7aa4d0b0f73559cad2fd (diff)
downloadscummvm-rg350-01c0cb3d8f2e227baafe079f9528b9e9b2da115b.tar.gz
scummvm-rg350-01c0cb3d8f2e227baafe079f9528b9e9b2da115b.tar.bz2
scummvm-rg350-01c0cb3d8f2e227baafe079f9528b9e9b2da115b.zip
Skip copy protection screen in indy3ega.
svn-id: r14663
Diffstat (limited to 'scumm/script.cpp')
-rw-r--r--scumm/script.cpp6
1 files changed, 1 insertions, 5 deletions
diff --git a/scumm/script.cpp b/scumm/script.cpp
index 2f941eebf3..a8c45acd8d 100644
--- a/scumm/script.cpp
+++ b/scumm/script.cpp
@@ -519,11 +519,7 @@ int ScummEngine::readVar(uint var) {
var = (var >> 4) & 0xFF;
if (!_copyProtection) {
- // INDY3, EGA Loom and, apparently, Zak256 check this
- // during the game...
- if (_gameId == GID_INDY3 && (_features & GF_OLD_BUNDLE) && var == 94 && bit == 4) {
- return 0;
- } else if (_gameId == GID_LOOM && (_features & GF_FMTOWNS) && var == 214 && bit == 15) {
+ if (_gameId == GID_LOOM && (_features & GF_FMTOWNS) && var == 214 && bit == 15) {
return 0;
} else if (_gameId == GID_ZAK256 && var == 151 && bit == 8) {
return 0;