From 92eb7b7aa5bbe6f2554b1cf24c11092681f69cc0 Mon Sep 17 00:00:00 2001 From: Paul Gilbert Date: Mon, 13 Mar 2006 11:18:18 +0000 Subject: Changed temp variable from byte to word to fix decoding of some animation resources svn-id: r21254 --- engines/lure/decode.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/engines/lure/decode.cpp b/engines/lure/decode.cpp index d0f5839ac2..c91cd97621 100644 --- a/engines/lure/decode.cpp +++ b/engines/lure/decode.cpp @@ -187,7 +187,7 @@ void AnimationDecoder::decode_data_2(byte *&pSrc, uint16 &currData, uint16 &bitC uint32 AnimationDecoder::decode_data(MemoryBlock *src, MemoryBlock *dest, uint32 srcPos) { byte *pSrc = src->data() + srcPos; byte *pDest = dest->data(); - byte v; + uint16 v; bool carry = false; uint16 currData, bitCtr, dx; byte tableOffset; -- cgit v1.2.3