Skip to content

Commit

Permalink
VIDEO: Fix SVQ1 videos to error out on B Frames.
Browse files Browse the repository at this point in the history
  • Loading branch information
digitall committed Nov 18, 2012
1 parent d2c2c5e commit 46027e5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion video/codecs/svq1.cpp
Expand Up @@ -225,7 +225,7 @@ const Graphics::Surface *SVQ1Decoder::decodeImage(Common::SeekableReadStream *st

byte *previous = 0;
if (frameType == 2) { // B Frame
warning("B Frame not supported currently");
error("SVQ1 Video: B Frames not supported");
//previous = _next[i];
} else {
previous = _last[i];
Expand Down

0 comments on commit 46027e5

Please sign in to comment.