diff options
-rw-r--r-- | scumm/gfx.cpp | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/scumm/gfx.cpp b/scumm/gfx.cpp index a7007e9d91..a23fa681e9 100644 --- a/scumm/gfx.cpp +++ b/scumm/gfx.cpp @@ -1752,12 +1752,12 @@ void Gdi::decompressMaskImgOr(byte *dst, const byte *src, int height) { } #define READ_BIT (cl--, bit = bits&1, bits>>=1,bit) -#define FILL_BITS do { \ - if (cl <= 8) { \ - bits |= (*src++ << cl); \ - cl += 8; \ - } \ - } while (0) +#define FILL_BITS do { \ + if (cl <= 8) { \ + bits |= (*src++ << cl); \ + cl += 8; \ + } \ + } while (0) void Gdi::unkDecodeA(byte *dst, const byte *src, int height) { byte color = *src++; |