[Scummvm-cvs-logs] scummvm master -> 2ac86f8140adde218086a8ccd17880e5eb90887d

fuzzie fuzzie at fuzzie.org
Thu Apr 14 18:39:10 CEST 2011


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:
2ac86f8140 GRAPHICS: Replace PNG_HEADER macro with MKTAG


Commit: 2ac86f8140adde218086a8ccd17880e5eb90887d
    https://github.com/scummvm/scummvm/commit/2ac86f8140adde218086a8ccd17880e5eb90887d
Author: Alyssa Milburn (fuzzie at fuzzie.org)
Date: 2011-04-14T09:37:27-07:00

Commit Message:
GRAPHICS: Replace PNG_HEADER macro with MKTAG

Changed paths:
    graphics/png.cpp



diff --git a/graphics/png.cpp b/graphics/png.cpp
index eb066ef..96dc083 100644
--- a/graphics/png.cpp
+++ b/graphics/png.cpp
@@ -99,8 +99,6 @@ enum PNGFilters {
 	kFilterPaeth   = 4
 };
 
-#define PNG_HEADER(a, b, c, d) CONSTANT_LE_32(d | (c << 8) | (b << 16) | (a << 24))
-
 PNG::PNG() : _compressedBuffer(0), _compressedBufferSize(0), 
 			_unfilteredSurface(0), _transparentColorSpecified(false) {
 }
@@ -200,11 +198,11 @@ bool PNG::read(Common::SeekableReadStream *str) {
 	_stream = str;
 
 	// First, check the PNG signature
-	if (_stream->readUint32BE() != PNG_HEADER(0x89, 0x50, 0x4e, 0x47)) {
+	if (_stream->readUint32BE() != MKTAG(0x89, 0x50, 0x4e, 0x47)) {
 		delete _stream;
 		return false;
 	}
-	if (_stream->readUint32BE() != PNG_HEADER(0x0d, 0x0a, 0x1a, 0x0a)) {
+	if (_stream->readUint32BE() != MKTAG(0x0d, 0x0a, 0x1a, 0x0a)) {
 		delete _stream;
 		return false;
 	}






More information about the Scummvm-git-logs mailing list