aboutsummaryrefslogtreecommitdiff
path: root/image/codecs/cinepak.h
diff options
context:
space:
mode:
authorMatthew Hoops2014-08-18 18:31:38 -0400
committerMatthew Hoops2015-04-11 14:36:37 -0400
commitf342d63431fc0784adc08648f17a6bbad934743f (patch)
tree1521c7bfe83d7528c05d58e3e2219b8b7d9e83a6 /image/codecs/cinepak.h
parentad32fb58326657b05731681b1a8945978928ef55 (diff)
downloadscummvm-rg350-f342d63431fc0784adc08648f17a6bbad934743f.tar.gz
scummvm-rg350-f342d63431fc0784adc08648f17a6bbad934743f.tar.bz2
scummvm-rg350-f342d63431fc0784adc08648f17a6bbad934743f.zip
IMAGE: Allow for choosing dither type
Diffstat (limited to 'image/codecs/cinepak.h')
-rw-r--r--image/codecs/cinepak.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/image/codecs/cinepak.h b/image/codecs/cinepak.h
index ce8451bf9a..ccdad0877c 100644
--- a/image/codecs/cinepak.h
+++ b/image/codecs/cinepak.h
@@ -75,8 +75,8 @@ public:
bool containsPalette() const { return _ditherPalette != 0; }
const byte *getPalette() { _dirtyPalette = false; return _ditherPalette; }
bool hasDirtyPalette() const { return _dirtyPalette; }
- bool canDither() const;
- void setDither(const byte *palette);
+ bool canDither(DitherType type) const;
+ void setDither(DitherType type, const byte *palette);
private:
CinepakFrame _curFrame;