diff options
| author | D G Turner | 2012-11-18 21:00:07 +0000 |
|---|---|---|
| committer | D G Turner | 2012-11-18 21:00:07 +0000 |
| commit | 46027e5303de8cd102f06a07572dd5fbf02c44e6 (patch) | |
| tree | 1d2fd15cf34efd189f654f8b8cf01bb195e9aa35 /video | |
| parent | d2c2c5ec01892035946427ad05d6674cefacec2d (diff) | |
| download | scummvm-rg350-46027e5303de8cd102f06a07572dd5fbf02c44e6.tar.gz scummvm-rg350-46027e5303de8cd102f06a07572dd5fbf02c44e6.tar.bz2 scummvm-rg350-46027e5303de8cd102f06a07572dd5fbf02c44e6.zip | |
VIDEO: Fix SVQ1 videos to error out on B Frames.
Diffstat (limited to 'video')
| -rw-r--r-- | video/codecs/svq1.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/video/codecs/svq1.cpp b/video/codecs/svq1.cpp index fd40a0100c..57e84968a3 100644 --- a/video/codecs/svq1.cpp +++ b/video/codecs/svq1.cpp @@ -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]; |
