aboutsummaryrefslogtreecommitdiff
path: root/image/codecs/indeo4.h
diff options
context:
space:
mode:
authorPaul Gilbert2016-11-18 21:04:12 -0500
committerPaul Gilbert2016-11-18 21:04:12 -0500
commit4888433c46a8e36c84dbc1b4ace7aeee83d12f2d (patch)
tree8e07e40036b6ae1ac0c5df321adcf34a1fc4da4a /image/codecs/indeo4.h
parent91d61b2cdbb95ee67bdb3d07da198be9575b561b (diff)
downloadscummvm-rg350-4888433c46a8e36c84dbc1b4ace7aeee83d12f2d.tar.gz
scummvm-rg350-4888433c46a8e36c84dbc1b4ace7aeee83d12f2d.tar.bz2
scummvm-rg350-4888433c46a8e36c84dbc1b4ace7aeee83d12f2d.zip
IMAGE: Fix some confusion of bytes vs bits in Indeo decoders
Diffstat (limited to 'image/codecs/indeo4.h')
-rw-r--r--image/codecs/indeo4.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/image/codecs/indeo4.h b/image/codecs/indeo4.h
index 9fb6435ed5..420acc3f33 100644
--- a/image/codecs/indeo4.h
+++ b/image/codecs/indeo4.h
@@ -52,7 +52,7 @@ class Indeo4Decoder : public IndeoDecoderBase {
bool _is2dTrans;
};
public:
- Indeo4Decoder(uint16 width, uint16 height, uint bytesPerPixel = 2);
+ Indeo4Decoder(uint16 width, uint16 height, uint bitsPerPixel = 16);
virtual ~Indeo4Decoder() {}
virtual const Graphics::Surface *decodeFrame(Common::SeekableReadStream &stream);