aboutsummaryrefslogtreecommitdiff
path: root/graphics
diff options
context:
space:
mode:
authorTorbjörn Andersson2006-07-14 13:33:58 +0000
committerTorbjörn Andersson2006-07-14 13:33:58 +0000
commit6358547a434a30283c7eeacab6e6f822fd2073d2 (patch)
treeb3f31db9dce97586f5df624e12be40b91d81d800 /graphics
parentfb3a3f75aa150d428d28dbb5a2391e833387946b (diff)
downloadscummvm-rg350-6358547a434a30283c7eeacab6e6f822fd2073d2.tar.gz
scummvm-rg350-6358547a434a30283c7eeacab6e6f822fd2073d2.tar.bz2
scummvm-rg350-6358547a434a30283c7eeacab6e6f822fd2073d2.zip
More whitespace changes.
svn-id: r23496
Diffstat (limited to 'graphics')
-rw-r--r--graphics/ilbm.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/graphics/ilbm.cpp b/graphics/ilbm.cpp
index 1b1f53d2c1..b44d3799b2 100644
--- a/graphics/ilbm.cpp
+++ b/graphics/ilbm.cpp
@@ -59,7 +59,7 @@ struct Chunk {
if (size % 2) {
size++;
}
- while(!_input->eos() && !eos()) {
+ while (!_input->eos() && !eos()) {
readByte();
}
}
@@ -244,7 +244,7 @@ void decodeILBM(Common::ReadStream &input, Surface &surface, byte *&colors) {
formChunk.incBytesRead(8);
chunk.readHeader();
- switch(chunk.id) {
+ switch (chunk.id) {
case ID_BMHD:
bitmapHeader.width = chunk.readUint16();
bitmapHeader.height = chunk.readUint16();