diff options
author | D G Turner | 2017-01-09 07:21:59 +0000 |
---|---|---|
committer | D G Turner | 2017-01-09 07:21:59 +0000 |
commit | f63b9d0fcb50ff4a976d0dcbfb132f43902454a3 (patch) | |
tree | 85a042151adac8d21ed50908c6e3d25873c1ef2d /image | |
parent | a85bbc01484b224e8efaf8ade9380d60ec2236c5 (diff) | |
download | scummvm-rg350-f63b9d0fcb50ff4a976d0dcbfb132f43902454a3.tar.gz scummvm-rg350-f63b9d0fcb50ff4a976d0dcbfb132f43902454a3.tar.bz2 scummvm-rg350-f63b9d0fcb50ff4a976d0dcbfb132f43902454a3.zip |
IMAGE: Fix Unused Variable Compiler Warning in Indeo 4 Codec.
Diffstat (limited to 'image')
-rw-r--r-- | image/codecs/indeo4.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/image/codecs/indeo4.cpp b/image/codecs/indeo4.cpp index 8dc67d5501..b6ac0882e7 100644 --- a/image/codecs/indeo4.cpp +++ b/image/codecs/indeo4.cpp @@ -601,7 +601,7 @@ void Indeo4Decoder::decodeTransparency() { // and mark the range of pixels of that color from the start and end of // each line as transparent assert(_surface->format.bytesPerPixel == 4); - byte r, g, b, a; + byte r, g, b; if (_surface->format.aBits() == 0) { // Surface is 4 bytes per pixel, but only RGB. So promote the |