mirror of
https://github.com/crskycode/GARbro.git
synced 2024-11-23 21:55:34 +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();
|
||||
IndependentBlocks = 0 != (flags & 0x20);
|
||||
HasBlockChecksum = 0 != (flags & 0x10);
|
||||
HasContentLength = 0 != (flags & 4);
|
||||
HasContentChecksum = 0 != (flags & 3);
|
||||
HasContentLength = 0 != (flags & 8);
|
||||
HasContentChecksum = 0 != (flags & 4);
|
||||
HasDictionary = 0 != (flags & 1);
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user