From 60fcf993e7c19cf3c3c5e74c2dd447e2e2b2c4ac Mon Sep 17 00:00:00 2001 From: sluicebox Date: Tue, 20 Aug 2019 18:54:24 -0700 Subject: GRAPHICS: Display Mac monochrome cursor inverted pixels Bug #7050 --- graphics/maccursor.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'graphics/maccursor.h') diff --git a/graphics/maccursor.h b/graphics/maccursor.h index 1ae38f8aa9..a4da7cb46f 100644 --- a/graphics/maccursor.h +++ b/graphics/maccursor.h @@ -63,11 +63,11 @@ public: uint16 getPaletteCount() const { return 256; } /** Read the cursor's data out of a stream. */ - bool readFromStream(Common::SeekableReadStream &stream, bool forceMonochrome = false); + bool readFromStream(Common::SeekableReadStream &stream, bool forceMonochrome = false, byte monochromeInvertedPixelColor = 0xff); private: - bool readFromCURS(Common::SeekableReadStream &stream); - bool readFromCRSR(Common::SeekableReadStream &stream, bool forceMonochrome); + bool readFromCURS(Common::SeekableReadStream &stream, byte monochromeInvertedPixelColor); + bool readFromCRSR(Common::SeekableReadStream &stream, bool forceMonochrome, byte monochromeInvertedPixelColor); byte *_surface; byte _palette[256 * 3]; -- cgit v1.2.3