From f63b9d0fcb50ff4a976d0dcbfb132f43902454a3 Mon Sep 17 00:00:00 2001 From: D G Turner Date: Mon, 9 Jan 2017 07:21:59 +0000 Subject: IMAGE: Fix Unused Variable Compiler Warning in Indeo 4 Codec. --- image/codecs/indeo4.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 -- cgit v1.2.3