1
0
mirror of synced 2024-09-24 11:38:22 +02:00

Fix zlib compression

This commit is contained in:
KillzXGaming 2019-06-29 17:38:06 -04:00
parent 9f41dbc269
commit a6a5f2ac50
3 changed files with 1 additions and 1 deletions

Binary file not shown.

View File

@ -79,7 +79,7 @@ namespace Switch_Toolbox.Library.IO
{
using (var zipStream = new DeflateStream(output, CompressionMode.Compress))
{
zipStream.Write(b, 2, b.Length);
zipStream.Write(b, 0, b.Length);
return output.ToArray();
}