From fd89c0cff470d0c6aef5a03c9c85bae08e744918 Mon Sep 17 00:00:00 2001 From: adelikat Date: Sun, 3 Nov 2013 16:23:47 +0000 Subject: [PATCH] trunk and 1.5x branch - turn off rewind for "medium" states, as SNES problems still occur with default settings and it isn't worth it, also change the default rewind frequency to 4 (if the user does turn it on, this frequency still gives smooth rewind) --- BizHawk.Client.Common/config/Config.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/BizHawk.Client.Common/config/Config.cs b/BizHawk.Client.Common/config/Config.cs index d9f615a1ae..281941da08 100644 --- a/BizHawk.Client.Common/config/Config.cs +++ b/BizHawk.Client.Common/config/Config.cs @@ -89,10 +89,10 @@ namespace BizHawk.Client.Common //Rewind settings public bool Rewind_UseDelta = true; public bool RewindEnabledSmall = true; - public bool RewindEnabledMedium = true; + public bool RewindEnabledMedium = false; public bool RewindEnabledLarge = false; public int RewindFrequencySmall = 1; - public int RewindFrequencyMedium = 2; + public int RewindFrequencyMedium = 4; public int RewindFrequencyLarge = 60; public int Rewind_MediumStateSize = 262144; //256kb public int Rewind_LargeStateSize = 1048576; //1mb