aboutsummaryrefslogtreecommitdiff
path: root/engines/scumm/smush
diff options
context:
space:
mode:
authorEugene Sandulenko2006-10-14 12:31:08 +0000
committerEugene Sandulenko2006-10-14 12:31:08 +0000
commit93600ae194cf825d2f01d228d2501f2911941fc5 (patch)
tree7e7dcb712223fd43228c149644320525e200ac0b /engines/scumm/smush
parent34b493daf8d922542db93cf621894ed8c80190fc (diff)
downloadscummvm-rg350-93600ae194cf825d2f01d228d2501f2911941fc5.tar.gz
scummvm-rg350-93600ae194cf825d2f01d228d2501f2911941fc5.tar.bz2
scummvm-rg350-93600ae194cf825d2f01d228d2501f2911941fc5.zip
Reenable INSANE warning. No check is required.
svn-id: r24309
Diffstat (limited to 'engines/scumm/smush')
-rw-r--r--engines/scumm/smush/chunk.cpp6
1 files changed, 2 insertions, 4 deletions
diff --git a/engines/scumm/smush/chunk.cpp b/engines/scumm/smush/chunk.cpp
index ae3158acde..3290d9e793 100644
--- a/engines/scumm/smush/chunk.cpp
+++ b/engines/scumm/smush/chunk.cpp
@@ -88,10 +88,8 @@ bool BaseChunk::seek(int32 delta, seek_type dir) {
// and ignored FLU index for videos which are used by INSANE.
// This will lead to incorrect seek requests
//
- // Check if INSANE is running and give more feedback in this case
- //if (g_scumm->_insaneRunning) {
- // warning("Looks like you compressed file %s in wrong way. It has FLU index which was not updated", _name.c_str());
- //}
+ // In fact it may happen only within INSANE, so do not even check for it
+ warning("Looks like you compressed file %s in wrong way. It has FLU index which was not updated", _name.c_str());
error("invalid seek request : %d > %d (delta == %d)", _curPos, _size, delta);
}
return true;