diff options
-rw-r--r-- | engines/director/score.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/director/score.cpp b/engines/director/score.cpp index 9da17d3590..12928ddd8b 100644 --- a/engines/director/score.cpp +++ b/engines/director/score.cpp @@ -897,7 +897,7 @@ void Score::loadLabels(Common::SeekableSubReadStreamEndian &stream) { } _labels = new Common::SortedArray<Label *>(compareLabels); - uint16 count = stream.readUint16() + 1; + uint16 count = stream.readUint16(); uint32 offset = count * 4 + 2; uint16 frame = stream.readUint16(); |