From 46027e5303de8cd102f06a07572dd5fbf02c44e6 Mon Sep 17 00:00:00 2001 From: D G Turner Date: Sun, 18 Nov 2012 21:00:07 +0000 Subject: VIDEO: Fix SVQ1 videos to error out on B Frames. --- video/codecs/svq1.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'video') 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]; -- cgit v1.2.3