aboutsummaryrefslogtreecommitdiff
path: root/image/codecs/indeo/vlc.cpp
diff options
context:
space:
mode:
authorPaul Gilbert2016-09-11 11:51:16 -0400
committerPaul Gilbert2016-09-11 11:51:16 -0400
commit71fd176f053520e34541d6c8be72214d9afb94ef (patch)
tree94ef6cc57212424bf1bd6fb11a6fc8e0387dfa1a /image/codecs/indeo/vlc.cpp
parent207afb6f462fadbe48d4ec298ce7c30ea5c874f0 (diff)
downloadscummvm-rg350-71fd176f053520e34541d6c8be72214d9afb94ef.tar.gz
scummvm-rg350-71fd176f053520e34541d6c8be72214d9afb94ef.tar.bz2
scummvm-rg350-71fd176f053520e34541d6c8be72214d9afb94ef.zip
IMAGE: Compilation fixes for Indeo codecs
Diffstat (limited to 'image/codecs/indeo/vlc.cpp')
-rw-r--r--image/codecs/indeo/vlc.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/image/codecs/indeo/vlc.cpp b/image/codecs/indeo/vlc.cpp
index 5b9e96cd96..baf3984869 100644
--- a/image/codecs/indeo/vlc.cpp
+++ b/image/codecs/indeo/vlc.cpp
@@ -155,7 +155,7 @@ int VLC::init_vlc(int nbBits, int nbCodes, const void *p_bits, int bitsWrap,
vlc = this;
vlc->_bits = nbBits;
if (flags & INIT_VLC_USE_NEW_STATIC) {
- assert((nbCodes + 1) <= FF_ARRAY_ELEMS(localbuf));
+ assert((nbCodes + 1) <= (int)FF_ARRAY_ELEMS(localbuf));
buf = localbuf;
localvlc = *this;
vlc = &localvlc;