From b930e02fded28f0c88505ea4b83c697892ffe586 Mon Sep 17 00:00:00 2001 From: KillzXGaming Date: Thu, 27 Oct 2022 16:05:44 -0400 Subject: [PATCH] Quick fix for LZSS --- Switch_Toolbox_Library/Compression/Formats/LZSS.cs | 1 + 1 file changed, 1 insertion(+) diff --git a/Switch_Toolbox_Library/Compression/Formats/LZSS.cs b/Switch_Toolbox_Library/Compression/Formats/LZSS.cs index 4722b2dd..dec374f2 100644 --- a/Switch_Toolbox_Library/Compression/Formats/LZSS.cs +++ b/Switch_Toolbox_Library/Compression/Formats/LZSS.cs @@ -22,6 +22,7 @@ namespace Toolbox.Library { using (var reader = new FileReader(stream, true)) { + hasMagic = true; return reader.CheckSignature(4, "LzS\x01"); } }