diff options
author | D G Turner | 2012-11-18 20:52:47 +0000 |
---|---|---|
committer | D G Turner | 2012-11-18 20:52:47 +0000 |
commit | d2c2c5ec01892035946427ad05d6674cefacec2d (patch) | |
tree | e5013265abc4c31c4d92a2090dbf702cec0f121a /video/codecs | |
parent | 31451edb7a817b616f01ebb947a8a3e060674be8 (diff) | |
download | scummvm-rg350-d2c2c5ec01892035946427ad05d6674cefacec2d.tar.gz scummvm-rg350-d2c2c5ec01892035946427ad05d6674cefacec2d.tar.bz2 scummvm-rg350-d2c2c5ec01892035946427ad05d6674cefacec2d.zip |
VIDEO: Fix compiler warning in SVQ1 codec.
Diffstat (limited to 'video/codecs')
-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 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]; |