mirror of
https://github.com/BtbN/ClanServer.git
synced 2026-09-08 08:25:15 -05:00
Rewrite LZ77 decompression as well
This commit is contained in:
@@ -27,7 +27,7 @@ namespace eAmuseTest
|
||||
|
||||
byte[] rawData = data;
|
||||
if (compress == "lz77")
|
||||
rawData = LZ77.Decompress(data).ToArray();
|
||||
rawData = LZ77.Decompress(data);
|
||||
else if (compress != "none")
|
||||
throw new ArgumentException("Unsupported compression algorithm");
|
||||
|
||||
|
||||
Reference in New Issue
Block a user