aboutsummaryrefslogtreecommitdiff
path: root/scumm/script_v6.cpp
diff options
context:
space:
mode:
authorJames Brown2003-01-12 18:55:41 +0000
committerJames Brown2003-01-12 18:55:41 +0000
commit458ecbffcff89f7d10dcdd0abcb9afec793515ae (patch)
tree1899d92dff4f02014642771d7d164bd2e2364b74 /scumm/script_v6.cpp
parenta5e144fb8a847579c67fb500204c80dab2b7aa16 (diff)
downloadscummvm-rg350-458ecbffcff89f7d10dcdd0abcb9afec793515ae.tar.gz
scummvm-rg350-458ecbffcff89f7d10dcdd0abcb9afec793515ae.tar.bz2
scummvm-rg350-458ecbffcff89f7d10dcdd0abcb9afec793515ae.zip
Remove assert. It's assertion makes me fearful of it's dominance. Oh, and it prevents the Lights scene in ComI working.
svn-id: r6433
Diffstat (limited to 'scumm/script_v6.cpp')
-rw-r--r--scumm/script_v6.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/scumm/script_v6.cpp b/scumm/script_v6.cpp
index c4375db98d..4e2deaf68a 100644
--- a/scumm/script_v6.cpp
+++ b/scumm/script_v6.cpp
@@ -424,7 +424,7 @@ void Scumm::writeArray(int array, int idx, int base, int value)
return;
base += idx * ah->dim1_size;
- assert(base >= 0 && base < ah->dim1_size * ah->dim2_size);
+ //assert(base >= 0 && base < ah->dim1_size * ah->dim2_size);
if (ah->type == 4) {
ah->data[base] = value;