(ScnOpener.LzDecompress): made static.

This commit is contained in:
morkt 2022-05-03 13:42:19 +04:00
parent 182e445611
commit 64dddeaecb

View File

@ -112,7 +112,7 @@ namespace GameRes.Formats.Seraphim
} }
} }
internal byte[] LzDecompress (IBinaryStream input) internal static byte[] LzDecompress (IBinaryStream input)
{ {
int unpacked_size = input.ReadInt32(); int unpacked_size = input.ReadInt32();
var data = new byte[unpacked_size]; var data = new byte[unpacked_size];