diff options
author | James Brown | 2003-01-12 18:55:41 +0000 |
---|---|---|
committer | James Brown | 2003-01-12 18:55:41 +0000 |
commit | 458ecbffcff89f7d10dcdd0abcb9afec793515ae (patch) | |
tree | 1899d92dff4f02014642771d7d164bd2e2364b74 | |
parent | a5e144fb8a847579c67fb500204c80dab2b7aa16 (diff) | |
download | scummvm-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
-rw-r--r-- | scumm/script_v6.cpp | 2 |
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; |