From 7f275c5ab51c3a06a723151c36621f3f85427344 Mon Sep 17 00:00:00 2001 From: goyuken Date: Sun, 31 May 2015 18:31:45 +0000 Subject: [PATCH] compress movies even if savestates are not compressed. separate config entry, not hookled up in config --- BizHawk.Client.Common/BinarySaveStates.cs | 7 ++++--- BizHawk.Client.Common/config/Config.cs | 1 + 2 files changed, 5 insertions(+), 3 deletions(-) diff --git a/BizHawk.Client.Common/BinarySaveStates.cs b/BizHawk.Client.Common/BinarySaveStates.cs index 6cbb5dda66..2824674307 100644 --- a/BizHawk.Client.Common/BinarySaveStates.cs +++ b/BizHawk.Client.Common/BinarySaveStates.cs @@ -264,13 +264,14 @@ 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 notamovie = true) // notamovie is hack, really should have separate something { - _zip = new IonicZipWriter(path, Global.Config.SaveStateCompressionLevelNormal); + _zip = new IonicZipWriter(path, notamovie ? Global.Config.SaveStateCompressionLevelNormal + : Global.Config.MovieCompressionLevel); //_zip = new SharpZipWriter(path, Global.Config.SaveStateCompressionLevelNormal); //_zip = new SevenZipWriter(path, Global.Config.SaveStateCompressionLevelNormal); - if (stateVersionTag) + if (notamovie) { PutLump(BinaryStateLump.Versiontag, WriteVersion); } diff --git a/BizHawk.Client.Common/config/Config.cs b/BizHawk.Client.Common/config/Config.cs index 03b572dbe8..f0e56bedc3 100644 --- a/BizHawk.Client.Common/config/Config.cs +++ b/BizHawk.Client.Common/config/Config.cs @@ -167,6 +167,7 @@ namespace BizHawk.Client.Common public int SaveStateCompressionLevelNormal = DefaultSaveStateCompressionLevelNormal; public const int DefaultSaveStateCompressionLevelRewind = 0;//this isnt actually used yet public int SaveStateCompressionLevelRewind = DefaultSaveStateCompressionLevelRewind;//this isnt actually used yet + public int MovieCompressionLevel = 2; /// use vsync. if VSyncThrottle = false, this will try to use vsync without throttling to it public bool VSync = false;