From 521d2e299f72bf3670092d7b09cb3f6f51682853 Mon Sep 17 00:00:00 2001 From: Eugene Sandulenko Date: Fri, 17 Jun 2016 15:13:48 +0200 Subject: GRAPHICS: Use better color for 1bpp BMPs --- image/codecs/bmp_raw.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'image/codecs') 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) { -- cgit v1.2.3