From 8e129ea010aa3e04bbcc011ad84b5c06070e395c Mon Sep 17 00:00:00 2001 From: Sewer56 Date: Fri, 13 Dec 2024 08:45:02 +0000 Subject: [PATCH] Fixed: Incorrect field on branch in bzip3 --- patterns/bzip3.hexpat | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/patterns/bzip3.hexpat b/patterns/bzip3.hexpat index fe3dd71a..830ca5f1 100644 --- a/patterns/bzip3.hexpat +++ b/patterns/bzip3.hexpat @@ -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;