diff options
Diffstat (limited to 'engines')
-rw-r--r-- | engines/director/cast.cpp | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/engines/director/cast.cpp b/engines/director/cast.cpp index 8b1e57cf18..ed5b05643c 100644 --- a/engines/director/cast.cpp +++ b/engines/director/cast.cpp @@ -95,7 +95,9 @@ TextCast::TextCast(Common::ReadStreamEndian &stream, uint16 version) { palinfo3 = stream.readUint16(); int t = stream.readUint32(); - assert(t == 0); // So far we saw only 0 here + if (t != 0) { // In D2 there are values + warning("TextCast: t: %x", t); + } initialRect = Score::readRect(stream); textShadow = static_cast<SizeType>(stream.readByte()); |