diff options
author | Travis Howell | 2005-04-03 06:40:44 +0000 |
---|---|---|
committer | Travis Howell | 2005-04-03 06:40:44 +0000 |
commit | 994769ec1652eda82023cd342479d2df6615965d (patch) | |
tree | 2c0809be8a6081a584a52a707fa9290ec320dc9c | |
parent | d7b6860730a104bd85491ea90deafebd57da9d90 (diff) | |
download | scummvm-rg350-994769ec1652eda82023cd342479d2df6615965d.tar.gz scummvm-rg350-994769ec1652eda82023cd342479d2df6615965d.tar.bz2 scummvm-rg350-994769ec1652eda82023cd342479d2df6615965d.zip |
Still needed, mixed up block types.
svn-id: r17344
-rw-r--r-- | scumm/smush/smush_player.cpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/scumm/smush/smush_player.cpp b/scumm/smush/smush_player.cpp index a27d0d4a95..2641d1ccec 100644 --- a/scumm/smush/smush_player.cpp +++ b/scumm/smush/smush_player.cpp @@ -1036,6 +1036,9 @@ void SmushPlayer::parseNextFrame() { Chunk *sub = _base->subBlock(); switch (sub->getType()) { + case TYPE_AHDR: // FT INSANE may seek file to the beginning + handleAnimHeader(*sub); + break; case TYPE_FRME: handleFrame(*sub); break; |