changed zlib compression level to maximum (Level9).

This commit is contained in:
morkt
2014-08-17 01:28:42 +04:00
parent c4834692cf
commit 97b9e28fbc
3 changed files with 7 additions and 5 deletions

View File

@@ -184,7 +184,8 @@ namespace GameRes.Formats.YuRis
{
if (entry.IsPacked)
{
using (var zstream = new ZLibStream (checked_stream, CompressionMode.Compress, true))
using (var zstream = new ZLibStream (checked_stream, CompressionMode.Compress,
CompressionLevel.Level9, true))
{
input.CopyTo (zstream);
zstream.Flush();