diff options
-rw-r--r-- | engines/director/score.cpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/engines/director/score.cpp b/engines/director/score.cpp index 37f2dfdded..17d6b8d11c 100644 --- a/engines/director/score.cpp +++ b/engines/director/score.cpp @@ -529,6 +529,9 @@ void Score::loadConfig(Common::SeekableSubReadStreamEndian &stream) { _castArrayEnd = stream.readUint16(); _currentFrameRate = stream.readByte(); + if (_currentFrameRate == 0) + _currentFrameRate = 20; + byte lightswitch = stream.readByte(); uint16 unk1 = stream.readUint16(); uint16 commentFont = stream.readUint16(); |