1
0
mirror of synced 2024-11-12 02:00:50 +01:00

Update readme

This commit is contained in:
KillzXGaming 2020-04-09 21:16:21 -04:00
parent 815daaad45
commit fff31b2277
2 changed files with 3 additions and 1 deletions

View File

@ -126,6 +126,7 @@ In the event that the tool cannot compile, check references. All the libraries u
- pkNX and kwsch for Fnv hashing and useful pkmn code/structure references.
- Dragonation for useful code on the structure for some flatbuffers in pokemon switch
- mvit and Rei for help with gfpak hash strings and also research for formats.
- QuickBMS for some compression code ported (LZ77 WII)
## Resources
- [TreeView Icons by icons8](https://icons8.com/)

View File

@ -14,7 +14,8 @@ namespace Toolbox.Library
private readonly static int F = 18;
private static readonly int threshold = 2;
//Ported from
//https://github.com/mistydemeo/quickbms/blob/5752a6a2a38e16211952553fcffa59570855ac42/included/nintendo.c#L58
public static byte[] Decompress11(byte[] input, int decomp_size)
{
int i, j, disp = 0, len = 0, cdest;