diff options
Diffstat (limited to 'graphics/ilbm.cpp')
-rw-r--r-- | graphics/ilbm.cpp | 4 |
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(); |