diff options
author | Eugene Sandulenko | 2016-06-17 15:13:48 +0200 |
---|---|---|
committer | Eugene Sandulenko | 2016-06-21 21:26:40 +0200 |
commit | 521d2e299f72bf3670092d7b09cb3f6f51682853 (patch) | |
tree | 3f0e114c3ea30c38c87c613c715819ea7f9faeec | |
parent | 848abbee06912655ed1d9c8d663919221fdf4daa (diff) | |
download | scummvm-rg350-521d2e299f72bf3670092d7b09cb3f6f51682853.tar.gz scummvm-rg350-521d2e299f72bf3670092d7b09cb3f6f51682853.tar.bz2 scummvm-rg350-521d2e299f72bf3670092d7b09cb3f6f51682853.zip |
GRAPHICS: Use better color for 1bpp BMPs
-rw-r--r-- | image/codecs/bmp_raw.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/image/codecs/bmp_raw.cpp b/image/codecs/bmp_raw.cpp index 0dc1e9fadd..68d70f25f6 100644 --- a/image/codecs/bmp_raw.cpp +++ b/image/codecs/bmp_raw.cpp @@ -59,7 +59,7 @@ const Graphics::Surface *BitmapRawDecoder::decodeFrame(Common::SeekableReadStrea for (int j = 0; j != _width;) { byte color = stream.readByte(); for (int k = 0; k < 8; k++) { - *dst++ = (color & 0x80) ? 0x01 : 0x00; + *dst++ = (color & 0x80) ? 0x0f : 0x00; color <<= 1; j++; if (j == _width) { |