mirror of
https://github.com/crskycode/GARbro.git
synced 2024-11-27 15:44:00 +08:00
(LZ4): messed up frame header bits.
This commit is contained in:
parent
f435bf7349
commit
262ffcdd2a
@ -76,8 +76,8 @@ namespace GameRes.Compression
|
|||||||
throw Lz4Stream.InvalidData();
|
throw Lz4Stream.InvalidData();
|
||||||
IndependentBlocks = 0 != (flags & 0x20);
|
IndependentBlocks = 0 != (flags & 0x20);
|
||||||
HasBlockChecksum = 0 != (flags & 0x10);
|
HasBlockChecksum = 0 != (flags & 0x10);
|
||||||
HasContentLength = 0 != (flags & 4);
|
HasContentLength = 0 != (flags & 8);
|
||||||
HasContentChecksum = 0 != (flags & 3);
|
HasContentChecksum = 0 != (flags & 4);
|
||||||
HasDictionary = 0 != (flags & 1);
|
HasDictionary = 0 != (flags & 1);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user