diff options
author | Matthew Hoops | 2014-09-05 00:29:42 -0400 |
---|---|---|
committer | Matthew Hoops | 2015-04-11 14:36:54 -0400 |
commit | c402d9a9594e5a2b38f834578b010d5cf9bb771e (patch) | |
tree | 68874606a74e7b0727399a0de5f2df05066e2477 /image | |
parent | 0ceb383cd3f24bde6e9855f3b86f161eae3fb14b (diff) | |
download | scummvm-rg350-c402d9a9594e5a2b38f834578b010d5cf9bb771e.tar.gz scummvm-rg350-c402d9a9594e5a2b38f834578b010d5cf9bb771e.tar.bz2 scummvm-rg350-c402d9a9594e5a2b38f834578b010d5cf9bb771e.zip |
IMAGE: Add an unknown dither type
Diffstat (limited to 'image')
-rw-r--r-- | image/codecs/codec.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/image/codecs/codec.h b/image/codecs/codec.h index ad7e43783c..8845754d52 100644 --- a/image/codecs/codec.h +++ b/image/codecs/codec.h @@ -62,6 +62,9 @@ public: * A type of dithering. */ enum DitherType { + /** Unknown */ + kDitherTypeUnknown, + /** Video for Windows dithering */ kDitherTypeVFW, |