mirror of
https://github.com/libretro/scummvm.git
synced 2024-12-15 06:08:35 +00:00
Fix compilation
svn-id: r39549
This commit is contained in:
parent
160acbd9f5
commit
7077ea36e0
@ -144,7 +144,7 @@ void lzwExpand(uint8 *in, uint8 *out, int32 len) {
|
||||
setBits(START_BITS); /* Starts at 9-bits */
|
||||
lzwnext = 257; /* Next available code to define */
|
||||
|
||||
end = (uint8 *)((uint8)out + (uint8)len);
|
||||
end = (uint8 *)(out + (uint32)len);
|
||||
|
||||
lzwold = inputCode(&in); /* Read in the first code */
|
||||
c = lzwold;
|
||||
|
Loading…
Reference in New Issue
Block a user