Use ZstdSharp

This commit is contained in:
Crsky
2026-02-28 11:16:25 +08:00
parent dc813737b4
commit 7e9da65cf1
4 changed files with 5 additions and 7 deletions

View File

@@ -313,7 +313,7 @@ namespace GameRes.Formats.NeXAS
static private byte[] ZstdDecompress (Stream s, uint unpackedSize)
{
using (var ds = new ZstdNet.DecompressionStream (s))
using (var ds = new ZstdSharp.DecompressionStream (s))
{
var dst = new byte[unpackedSize];
ds.Read (dst, 0, dst.Length);