aboutsummaryrefslogtreecommitdiff
path: root/scumm/script.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'scumm/script.cpp')
-rw-r--r--scumm/script.cpp3
1 files changed, 3 insertions, 0 deletions
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;