diff options
author | stevenhoefel | 2017-01-13 15:32:00 +1100 |
---|---|---|
committer | stevenhoefel | 2017-01-13 15:32:00 +1100 |
commit | ef295bfd1d133d71b2e368669490421885f0499b (patch) | |
tree | 1a13c189386b8c7b1c297d8186c2e58b71582986 /engines/director/images.h | |
parent | c199d2e55d4a003f7941763cd9f8f999c07c557e (diff) | |
download | scummvm-rg350-ef295bfd1d133d71b2e368669490421885f0499b.tar.gz scummvm-rg350-ef295bfd1d133d71b2e368669490421885f0499b.tar.bz2 scummvm-rg350-ef295bfd1d133d71b2e368669490421885f0499b.zip |
DIRECTOR: D4 image loading based on BPP.
Diffstat (limited to 'engines/director/images.h')
-rw-r--r-- | engines/director/images.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/engines/director/images.h b/engines/director/images.h index 3be0e11a9e..8d25d348d2 100644 --- a/engines/director/images.h +++ b/engines/director/images.h @@ -83,7 +83,7 @@ private: class BITDDecoderV4 : public Image::ImageDecoder { public: - BITDDecoderV4(int w, int h); + BITDDecoderV4(int w, int h, uint16 bitsPerPixel); virtual ~BITDDecoderV4(); // ImageDecoder API @@ -98,6 +98,7 @@ private: Graphics::Surface *_surface; byte *_palette; uint8 _paletteColorCount; + uint16 _bitsPerPixel; }; } // End of namespace Director |