mirror of
https://github.com/libretro/scummvm.git
synced 2025-04-02 23:01:42 +00:00
SCI: Fixed warning
svn-id: r39400
This commit is contained in:
parent
7c8a73f3bd
commit
5433adc69b
@ -260,7 +260,7 @@ int DecompressorLZW::unpackLZW1(Common::ReadStream *src, byte *dest, uint32 nPac
|
||||
byte stak[0x1014];
|
||||
byte lastchar = 0;
|
||||
uint16 stakptr = 0, lastbits = 0;
|
||||
tokenlist tokens[0x1004];
|
||||
Tokenlist tokens[0x1004];
|
||||
memset(tokens, 0, sizeof(tokens));
|
||||
|
||||
|
||||
|
@ -143,7 +143,7 @@ protected:
|
||||
void buildCelHeaders(byte **seeker, byte **writer, int celindex, int *cc_lengths, int max);
|
||||
|
||||
// decompressor data
|
||||
struct tokenlist {
|
||||
struct Tokenlist {
|
||||
byte data;
|
||||
uint16 next;
|
||||
};
|
||||
|
Loading…
x
Reference in New Issue
Block a user