aboutsummaryrefslogtreecommitdiff
path: root/engines/glk/raw_decoder.h
diff options
context:
space:
mode:
Diffstat (limited to 'engines/glk/raw_decoder.h')
-rw-r--r--engines/glk/raw_decoder.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/engines/glk/raw_decoder.h b/engines/glk/raw_decoder.h
index 96f25c2512..086cf2555f 100644
--- a/engines/glk/raw_decoder.h
+++ b/engines/glk/raw_decoder.h
@@ -45,6 +45,7 @@ private:
Graphics::Surface _surface;
byte *_palette;
uint16 _paletteColorCount;
+ int _transColor;
public:
RawDecoder();
~RawDecoder();
@@ -54,6 +55,7 @@ public:
virtual const Graphics::Surface *getSurface() const override { return &_surface; }
virtual const byte *getPalette() const override { return _palette; }
virtual uint16 getPaletteColorCount() const override { return _paletteColorCount; }
+ int getTransparentColor() const { return _transColor; }
};
} // End of namespace Glk