diff options
-rw-r--r-- | scumm/script_v2.cpp | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/scumm/script_v2.cpp b/scumm/script_v2.cpp index 40647f7527..8e631ec1dd 100644 --- a/scumm/script_v2.cpp +++ b/scumm/script_v2.cpp @@ -403,7 +403,9 @@ int Scumm::readArray(int array, int idx, int base) base += idx * ah->dim1_size; - assert(base >= 0 && base < ah->dim1_size * ah->dim2_size); + // FIXME: comment this for the time being as it was causing ft to crash + // in the minefeild + // assert(base >= 0 && base < ah->dim1_size * ah->dim2_size); if (ah->type == 4) { return ah->data[base]; |