From 3ecd142d6ccac4e3356c214e05bc2c37b4c9b0c5 Mon Sep 17 00:00:00 2001 From: Travis Howell Date: Fri, 25 Apr 2003 09:16:33 +0000 Subject: Add patch #727309 - EGA LOOM: Bypassing the copy protection svn-id: r7102 --- scumm/script.cpp | 3 +++ 1 file changed, 3 insertions(+) (limited to 'scumm') diff --git a/scumm/script.cpp b/scumm/script.cpp index cf6bd92207..8a1ae97e65 100644 --- a/scumm/script.cpp +++ b/scumm/script.cpp @@ -379,6 +379,9 @@ int Scumm::readVar(uint var) { // INDY3 checks this during the game... if (var == 94 && _gameId == GID_INDY3 && b == 4) { return 0; + } else if (var == 214 && b == 15 && _gameId == GID_LOOM && !copyprotbypassed) { + copyprotbypassed = true; + return 0; } else #endif return (_vars[ var ] & ( 1 << b ) ) ? 1 : 0; -- cgit v1.2.3