SCI: Fixed warning

svn-id: r39400
This commit is contained in:
Max Horn 2009-03-14 17:11:31 +00:00
parent 7c8a73f3bd
commit 5433adc69b
2 changed files with 2 additions and 2 deletions

View File

@ -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));

View File

@ -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;
};