[Scummvm-cvs-logs] scummvm master -> f87154def8c54722c8068e9ee9130c30ab393537

lordhoto lordhoto at gmail.com
Wed Aug 29 16:00:16 CEST 2012


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

Summary:
f189d8a541 GRAPHICS: Remove extra semicolon.
f87154def8 GRAPHICS: Slight formatting change for consistency.


Commit: f189d8a541647506498b19a2b66138b6171000a3
    https://github.com/scummvm/scummvm/commit/f189d8a541647506498b19a2b66138b6171000a3
Author: Johannes Schickel (lordhoto at scummvm.org)
Date: 2012-08-29T06:58:55-07:00

Commit Message:
GRAPHICS: Remove extra semicolon.

Changed paths:
    graphics/decoders/tga.h



diff --git a/graphics/decoders/tga.h b/graphics/decoders/tga.h
index e8dd2b8..8149014 100644
--- a/graphics/decoders/tga.h
+++ b/graphics/decoders/tga.h
@@ -59,7 +59,7 @@ public:
 	virtual void destroy();
 	virtual const Surface *getSurface() const {
 		return &_surface;
-	};
+	}
 	virtual const byte *getPalette() const { return _colorMap; }
 	virtual uint16 getPaletteColorCount() const { return _colorMapLength; }
 	virtual bool loadStream(Common::SeekableReadStream &stream);


Commit: f87154def8c54722c8068e9ee9130c30ab393537
    https://github.com/scummvm/scummvm/commit/f87154def8c54722c8068e9ee9130c30ab393537
Author: Johannes Schickel (lordhoto at scummvm.org)
Date: 2012-08-29T06:59:15-07:00

Commit Message:
GRAPHICS: Slight formatting change for consistency.

Changed paths:
    graphics/decoders/tga.h



diff --git a/graphics/decoders/tga.h b/graphics/decoders/tga.h
index 8149014..dfdc5a4 100644
--- a/graphics/decoders/tga.h
+++ b/graphics/decoders/tga.h
@@ -57,9 +57,7 @@ public:
 	TGADecoder();
 	virtual ~TGADecoder();
 	virtual void destroy();
-	virtual const Surface *getSurface() const {
-		return &_surface;
-	}
+	virtual const Surface *getSurface() const { return &_surface; }
 	virtual const byte *getPalette() const { return _colorMap; }
 	virtual uint16 getPaletteColorCount() const { return _colorMapLength; }
 	virtual bool loadStream(Common::SeekableReadStream &stream);






More information about the Scummvm-git-logs mailing list