From c50c6814142a3c38693fb024ac75a2f8ee29febb Mon Sep 17 00:00:00 2001 From: adelikat Date: Fri, 9 Aug 2013 16:42:53 +0000 Subject: [PATCH] By default, turn off rewind for large savestates :( --- BizHawk.MultiClient/Config.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/BizHawk.MultiClient/Config.cs b/BizHawk.MultiClient/Config.cs index d952352522..75e74279b1 100644 --- a/BizHawk.MultiClient/Config.cs +++ b/BizHawk.MultiClient/Config.cs @@ -259,7 +259,7 @@ namespace BizHawk.MultiClient public bool Rewind_UseDelta = true; public bool RewindEnabledSmall = true; public bool RewindEnabledMedium = true; - public bool RewindEnabledLarge = true; + public bool RewindEnabledLarge = false; public int RewindFrequencySmall = 1; public int RewindFrequencyMedium = 2; public int RewindFrequencyLarge = 60;