aboutsummaryrefslogtreecommitdiff
path: root/graphics/ilbm.cpp
diff options
context:
space:
mode:
authorEugene Sandulenko2005-07-30 21:11:48 +0000
committerEugene Sandulenko2005-07-30 21:11:48 +0000
commit6b4484472b79dc7ea7d1ce545a28fba7d3b7696f (patch)
treec44c4e61f18ddd537f7082cb48869cf33d422fbd /graphics/ilbm.cpp
parent86ab70b149e5cd00cf54f2e41896e2c4e16795e4 (diff)
downloadscummvm-rg350-6b4484472b79dc7ea7d1ce545a28fba7d3b7696f.tar.gz
scummvm-rg350-6b4484472b79dc7ea7d1ce545a28fba7d3b7696f.tar.bz2
scummvm-rg350-6b4484472b79dc7ea7d1ce545a28fba7d3b7696f.zip
Remove trailing whitespaces.
svn-id: r18604
Diffstat (limited to 'graphics/ilbm.cpp')
-rw-r--r--graphics/ilbm.cpp12
1 files changed, 6 insertions, 6 deletions
diff --git a/graphics/ilbm.cpp b/graphics/ilbm.cpp
index e4cdaaa79c..ccb3ec3a45 100644
--- a/graphics/ilbm.cpp
+++ b/graphics/ilbm.cpp
@@ -53,7 +53,7 @@ struct Chunk {
return (size - bytesRead) == 0;
}
- void feed() {
+ void feed() {
if (size % 2) {
size++;
}
@@ -88,7 +88,7 @@ struct Chunk {
int32 readSint32() {
return (int32)readUint32();
- }
+ }
};
static char * ID2string(IFF_ID id) {
@@ -156,7 +156,7 @@ page 376) */
/* EA IFF 85 Generic character string chunk */
#define ID_NAME MKID_BE('NAME')
/* EA IFF 85 Generic Name of art, music, etc. chunk */
-#define ID_TEXT MKID_BE('TEXT'))
+#define ID_TEXT MKID_BE('TEXT'))
/* EA IFF 85 Generic unformatted ASCII text chunk */
#define ID_copy MKID_BE('(c) ')
/* EA IFF 85 Generic Copyright text chunk */
@@ -253,7 +253,7 @@ void decodeILBM(Common::ReadStream &input, Surface &surface, byte *&colors) {
if (bitmapHeader.depth > 8) {
error("decodeILBM() depth > 8");
}
- bitmapHeader.masking = chunk.readByte();
+ bitmapHeader.masking = chunk.readByte();
bitmapHeader.pack = chunk.readByte();
if ((bitmapHeader.pack != 0) && (bitmapHeader.pack != 1)) {
error("decodeILBM() unsupported pack");
@@ -303,7 +303,7 @@ void decodeILBM(Common::ReadStream &input, Surface &surface, byte *&colors) {
idx = chunk.readByte();
for (j = 0; j < i; j++) {
((byte*)surface.pixels)[si++] = idx;
- }
+ }
}
}
break;
@@ -315,7 +315,7 @@ void decodeILBM(Common::ReadStream &input, Surface &surface, byte *&colors) {
error("unknown chunk : %s\n", ID2string(chunk.id));
}
- chunk.feed();
+ chunk.feed();
formChunk.incBytesRead(chunk.size);
}
}