[Scummvm-git-logs] scummvm master -> f63b9d0fcb50ff4a976d0dcbfb132f43902454a3

digitall dgturner at iee.org
Mon Jan 9 08:15:53 CET 2017


This automated email contains information about 1 new commit which have been
pushed to the 'scummvm' repo located at https://github.com/scummvm/scummvm .

Summary:
f63b9d0fcb IMAGE: Fix Unused Variable Compiler Warning in Indeo 4 Codec.


Commit: f63b9d0fcb50ff4a976d0dcbfb132f43902454a3
    https://github.com/scummvm/scummvm/commit/f63b9d0fcb50ff4a976d0dcbfb132f43902454a3
Author: D G Turner (digitall at scummvm.org)
Date: 2017-01-09T07:21:59Z

Commit Message:
IMAGE: Fix Unused Variable Compiler Warning in Indeo 4 Codec.

Changed paths:
    image/codecs/indeo4.cpp


diff --git a/image/codecs/indeo4.cpp b/image/codecs/indeo4.cpp
index 8dc67d5..b6ac088 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





More information about the Scummvm-git-logs mailing list