aboutsummaryrefslogtreecommitdiff
path: root/engines/glk/picture.h
diff options
context:
space:
mode:
authorPaul Gilbert2019-08-01 22:04:36 -0700
committerPaul Gilbert2019-08-01 22:05:40 -0700
commitefdf96517072445c07f17fdef17efd86e2bdc68c (patch)
tree01fd8676a11c0692df96827e716c0b5c2e7acf1d /engines/glk/picture.h
parent8a8ac63636850e18043fb5314c570b672eba2d6e (diff)
downloadscummvm-rg350-efdf96517072445c07f17fdef17efd86e2bdc68c.tar.gz
scummvm-rg350-efdf96517072445c07f17fdef17efd86e2bdc68c.tar.bz2
scummvm-rg350-efdf96517072445c07f17fdef17efd86e2bdc68c.zip
GLK: Properly handle Blorb images that have an adaptive palette
Diffstat (limited to 'engines/glk/picture.h')
-rw-r--r--engines/glk/picture.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/engines/glk/picture.h b/engines/glk/picture.h
index e3b65602a2..a8b7e0a9b2 100644
--- a/engines/glk/picture.h
+++ b/engines/glk/picture.h
@@ -90,6 +90,8 @@ class Pictures {
private:
int _refCount;
Common::Array<PictureEntry> _store;
+ Common::Array<uint> _adaptivePics;
+ Common::Array<byte> _savedPalette;
private:
/**
* Stores an original picture in the store
@@ -104,7 +106,7 @@ public:
/**
* Constructor
*/
- Pictures() : _refCount(0) {}
+ Pictures();
/**
* Destructor