diff options
Diffstat (limited to 'engines')
-rw-r--r-- | engines/director/cast.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/director/cast.cpp b/engines/director/cast.cpp index 238b2a53a0..cf8c651c69 100644 --- a/engines/director/cast.cpp +++ b/engines/director/cast.cpp @@ -258,7 +258,7 @@ ShapeCast::ShapeCast(Common::ReadStreamEndian &stream, uint16 version) { _initialRect = Score::readRect(stream); _pattern = stream.readUint16BE(); _fgCol = (stream.readByte() + 128) & 0xff; // -128 -> 0, 127 -> 256 - _bgCol = stream.readByte(); + _bgCol = (stream.readByte() + 128) & 0xff; _fillType = stream.readByte(); _lineThickness = stream.readByte(); _lineDirection = stream.readByte(); |