DIRECTOR: load editable textFlags for D3 TextCast

The flags are the same as for D4:
1: editable
2: auto tab
4: don't wrap
This commit is contained in:
Roland van Laar
2021-08-14 23:43:31 +02:00
parent 4a81475c2c
commit aff5e7ea2b
+2 -1
View File
@@ -632,7 +632,8 @@ TextCastMember::TextCastMember(Cast *cast, uint16 castId, Common::SeekableReadSt
pad2 = stream.readUint16();
_initialRect = Movie::readRect(stream);
pad3 = stream.readUint16();
pad4 = stream.readUint16();
_textFlags = stream.readUint16(); // 1: editable, 2: auto tab, 4: don't wrap
_editable = _textFlags & 0x1;
totalTextHeight = stream.readUint16();
}