1
0
mirror of synced 2024-12-03 19:47:29 +01:00

Some adjustments

This commit is contained in:
KillzXGaming 2019-07-01 15:52:52 -04:00
parent 42f6b670e0
commit 4a618ec55b
4 changed files with 2 additions and 4 deletions

Binary file not shown.

View File

@ -151,8 +151,6 @@ namespace Switch_Toolbox.Library.IO
byte* end = input + decompressedLength; byte* end = input + decompressedLength;
byte* data = input + pos; byte* data = input + pos;
byte[] Output = new byte[decompressedLength];
if (pos > decompressedLength) if (pos > decompressedLength)
{ {
uint flag; uint flag;
@ -220,11 +218,11 @@ namespace Switch_Toolbox.Library.IO
if (op_ofs >= 2) if (op_ofs >= 2)
{ {
Loop1(flag, op_len, chunk, data, output); Loop1(flag, op_len, chunk, data, output);
Loop2(flag, op_len, data, output, chunk);
} }
} }
} }
Loop2(flag, op_len, data, output, chunk);
} }
} }