fix savestate speed regression accidentally introduced with r8117

This commit is contained in:
goyuken 2014-11-28 17:36:05 +00:00
parent 6d04f9089a
commit 70fc923d2c
1 changed files with 2 additions and 2 deletions

View File

@ -266,9 +266,9 @@ namespace BizHawk.Client.Common
public BinaryStateSaver(string path, bool stateVersionTag = true) // stateVersionTag is a hack for reusing this for movie code
{
//_zip = new IonicZipWriter(path, Global.Config.SaveStateCompressionLevelNormal);
_zip = new IonicZipWriter(path, Global.Config.SaveStateCompressionLevelNormal);
//_zip = new SharpZipWriter(path, Global.Config.SaveStateCompressionLevelNormal);
_zip = new SevenZipWriter(path, Global.Config.SaveStateCompressionLevelNormal);
//_zip = new SevenZipWriter(path, Global.Config.SaveStateCompressionLevelNormal);
if (stateVersionTag)
{