From f5aca0b5e8bc825ac930cb47580a6bb49724ebb8 Mon Sep 17 00:00:00 2001 From: beirich Date: Fri, 21 Mar 2014 03:50:17 +0000 Subject: [PATCH] Binary savestates now way more awesomer and point-having --- BizHawk.Client.Common/BinarySaveStates.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/BizHawk.Client.Common/BinarySaveStates.cs b/BizHawk.Client.Common/BinarySaveStates.cs index 1ad3a3f110..61199e4958 100644 --- a/BizHawk.Client.Common/BinarySaveStates.cs +++ b/BizHawk.Client.Common/BinarySaveStates.cs @@ -222,7 +222,7 @@ namespace BizHawk.Client.Common IsStreamOwner = false, UseZip64 = UseZip64.Off }; - _zip.SetLevel(0); + _zip.SetLevel(5); PutLump(BinaryStateLump.Versiontag, WriteVersion); } @@ -230,7 +230,7 @@ namespace BizHawk.Client.Common public void PutLump(BinaryStateLump lump, Action callback) { var name = BinaryStateFileNames.Get(lump); - var e = new ZipEntry(name) {CompressionMethod = CompressionMethod.Stored}; + var e = new ZipEntry(name) {CompressionMethod = CompressionMethod.Deflated}; _zip.PutNextEntry(e); callback(_zip); _zip.CloseEntry();