aboutsummaryrefslogtreecommitdiff
path: root/graphics/pixelformat.h
diff options
context:
space:
mode:
authorJohannes Schickel2010-01-25 01:39:44 +0000
committerJohannes Schickel2010-01-25 01:39:44 +0000
commitaed02365ec81e77b3c8aa4f4ecd9a9d3893326f2 (patch)
tree95f119e687a666f65aad5041910c43bdfd4f2929 /graphics/pixelformat.h
parentec14cd6e6add76ce4f719edd7ce508d67ebd9f14 (diff)
downloadscummvm-rg350-aed02365ec81e77b3c8aa4f4ecd9a9d3893326f2.tar.gz
scummvm-rg350-aed02365ec81e77b3c8aa4f4ecd9a9d3893326f2.tar.bz2
scummvm-rg350-aed02365ec81e77b3c8aa4f4ecd9a9d3893326f2.zip
Strip trailing spaces/tabs.
svn-id: r47541
Diffstat (limited to 'graphics/pixelformat.h')
-rw-r--r--graphics/pixelformat.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/graphics/pixelformat.h b/graphics/pixelformat.h
index 7b95eabd35..fa45738650 100644
--- a/graphics/pixelformat.h
+++ b/graphics/pixelformat.h
@@ -51,13 +51,13 @@ struct PixelFormat {
byte rShift, gShift, bShift, aShift; /**< Binary left shift of each color component in the pixel value. */
inline PixelFormat() {
- bytesPerPixel =
- rLoss = gLoss = bLoss = aLoss =
+ bytesPerPixel =
+ rLoss = gLoss = bLoss = aLoss =
rShift = gShift = bShift = aShift = 0;
}
- inline PixelFormat(byte BytesPerPixel,
- byte RBits, byte GBits, byte BBits, byte ABits,
+ inline PixelFormat(byte BytesPerPixel,
+ byte RBits, byte GBits, byte BBits, byte ABits,
byte RShift, byte GShift, byte BShift, byte AShift) {
bytesPerPixel = BytesPerPixel;
rLoss = 8 - RBits, gLoss = 8 - GBits, bLoss = 8 - BBits, aLoss = 8 - ABits;