aboutsummaryrefslogtreecommitdiff
path: root/graphics
diff options
context:
space:
mode:
authorJoost Peters2008-11-15 11:43:15 +0000
committerJoost Peters2008-11-15 11:43:15 +0000
commit21ec2de29d6ba70bd8b6406b05a4392c6d27b43a (patch)
treefb1c2cecf0b9b6f199a80f54cc4fac4a3d9e337f /graphics
parentcd32c4d6bce9b3c32215ba5a29eebec0afcc8d1b (diff)
downloadscummvm-rg350-21ec2de29d6ba70bd8b6406b05a4392c6d27b43a.tar.gz
scummvm-rg350-21ec2de29d6ba70bd8b6406b05a4392c6d27b43a.tar.bz2
scummvm-rg350-21ec2de29d6ba70bd8b6406b05a4392c6d27b43a.zip
remove outdated comment
svn-id: r35079
Diffstat (limited to 'graphics')
-rw-r--r--graphics/flic_player.cpp5
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;
}