diff options
author | Travis Howell | 2007-02-23 11:12:12 +0000 |
---|---|---|
committer | Travis Howell | 2007-02-23 11:12:12 +0000 |
commit | b8bbe1b5fe03d7b624173a44cfa53f1eb38c481e (patch) | |
tree | e54dda6b79f99ba1272aafb395d945d42759937d /engines | |
parent | 74f21c1c4f03b6e7748aa3c0d61963d602bd301b (diff) | |
download | scummvm-rg350-b8bbe1b5fe03d7b624173a44cfa53f1eb38c481e.tar.gz scummvm-rg350-b8bbe1b5fe03d7b624173a44cfa53f1eb38c481e.tar.bz2 scummvm-rg350-b8bbe1b5fe03d7b624173a44cfa53f1eb38c481e.zip |
Update copy protection bypass for Simon 1/2.
svn-id: r25809
Diffstat (limited to 'engines')
-rw-r--r-- | engines/agos/script.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/engines/agos/script.cpp b/engines/agos/script.cpp index 8396ee9143..99f639474d 100644 --- a/engines/agos/script.cpp +++ b/engines/agos/script.cpp @@ -874,7 +874,9 @@ void AGOSEngine::o_freezeZones() { if (!_copyProtection && !(getFeatures() & GF_TALKIE)) { if ((getGameType() == GType_SIMON1 && _subroutine == 2924) || (getGameType() == GType_SIMON2 && _subroutine == 1322)) { + _variableArray[134] = 3; _variableArray[135] = 3; + setBitFlag(135, 1); setScriptCondition(0); } } |