aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorD G Turner2012-11-18 20:52:47 +0000
committerD G Turner2012-11-18 20:52:47 +0000
commitd2c2c5ec01892035946427ad05d6674cefacec2d (patch)
treee5013265abc4c31c4d92a2090dbf702cec0f121a
parent31451edb7a817b616f01ebb947a8a3e060674be8 (diff)
downloadscummvm-rg350-d2c2c5ec01892035946427ad05d6674cefacec2d.tar.gz
scummvm-rg350-d2c2c5ec01892035946427ad05d6674cefacec2d.tar.bz2
scummvm-rg350-d2c2c5ec01892035946427ad05d6674cefacec2d.zip
VIDEO: Fix compiler warning in SVQ1 codec.
-rw-r--r--video/codecs/svq1.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/video/codecs/svq1.cpp b/video/codecs/svq1.cpp
index 56b376f590..fd40a0100c 100644
--- a/video/codecs/svq1.cpp
+++ b/video/codecs/svq1.cpp
@@ -223,7 +223,7 @@ const Graphics::Surface *SVQ1Decoder::decodeImage(Common::SeekableReadStream *st
// Prediction Motion Vector
Common::Point *pmv = new Common::Point[(width / 8) + 3];
- byte *previous;
+ byte *previous = 0;
if (frameType == 2) { // B Frame
warning("B Frame not supported currently");
//previous = _next[i];