aboutsummaryrefslogtreecommitdiff
path: root/script_v1.cpp
diff options
context:
space:
mode:
authorMax Horn2002-08-15 16:46:29 +0000
committerMax Horn2002-08-15 16:46:29 +0000
commit7c1a174e533dcd0590fb667d4257826f38c71ca7 (patch)
treefced9a419bb4a237d18e25d68a37f709e34ddd6d /script_v1.cpp
parent105f966c6a66803653db90a01303cee3a08e5c0d (diff)
downloadscummvm-rg350-7c1a174e533dcd0590fb667d4257826f38c71ca7.tar.gz
scummvm-rg350-7c1a174e533dcd0590fb667d4257826f38c71ca7.tar.bz2
scummvm-rg350-7c1a174e533dcd0590fb667d4257826f38c71ca7.zip
first attempt to implement the difference between the box lock and box invisible flag. fixes the counter bug and all of the bugs introduced to my fix for the bus bug; but the bus bug is back, will look into that next
svn-id: r4745
Diffstat (limited to 'script_v1.cpp')
-rw-r--r--script_v1.cpp6
1 files changed, 0 insertions, 6 deletions
diff --git a/script_v1.cpp b/script_v1.cpp
index a06556f9e1..172fef7844 100644
--- a/script_v1.cpp
+++ b/script_v1.cpp
@@ -1608,12 +1608,6 @@ void Scumm::o5_matrixOps()
if (_features & GF_OLD256) {
a = getVarOrDirectByte(0x80);
b = fetchScriptByte();
-
- if (b & 0x40) { // We don't use the locked
- b &= ~0x40; // flag, so convert it to
- b |= 0x80; // invisible
- }
-
setBoxFlags(a, b);
return;
}