Skip to content

Commit

Permalink
patterns/bzip3: Fixed Incorrect field on branch (WerWolv#330)
Browse files Browse the repository at this point in the history
  • Loading branch information
Sewer56 authored and applecuckoo committed Jan 24, 2025
1 parent ebb6341 commit b3ef2d4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion patterns/bzip3.hexpat
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ struct Chunk {
u32 compressedSize; // Size of compressed block
u32 origSize; // Original uncompressed size

if (compressedSize < 64) {
if (origSize < 64) {
SmallBlock block;
} else {
Block block;
Expand Down

0 comments on commit b3ef2d4

Please sign in to comment.