diff options
-rw-r--r-- | graphics/flic_player.cpp | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/graphics/flic_player.cpp b/graphics/flic_player.cpp index 7a69762570..2705b83bc5 100644 --- a/graphics/flic_player.cpp +++ b/graphics/flic_player.cpp @@ -68,11 +68,10 @@ void FlicPlayer::redraw() { ChunkHeader FlicPlayer::readChunkHeader() { ChunkHeader head; + head.size = _fileStream.readUint32LE(); head.type = _fileStream.readUint16LE(); - - /* XXX: You'll want to read the rest of the chunk here as well! */ - + return head; } |