aboutsummaryrefslogtreecommitdiff
path: root/graphics/maccursor.h
diff options
context:
space:
mode:
Diffstat (limited to 'graphics/maccursor.h')
-rw-r--r--graphics/maccursor.h6
1 files changed, 3 insertions, 3 deletions
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];