fix savestate speed regression accidentally introduced with r8117
This commit is contained in:
parent
6d04f9089a
commit
70fc923d2c
|
@ -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
|
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 SharpZipWriter(path, Global.Config.SaveStateCompressionLevelNormal);
|
||||||
_zip = new SevenZipWriter(path, Global.Config.SaveStateCompressionLevelNormal);
|
//_zip = new SevenZipWriter(path, Global.Config.SaveStateCompressionLevelNormal);
|
||||||
|
|
||||||
if (stateVersionTag)
|
if (stateVersionTag)
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in New Issue