From edd5ddbd359da7300eb05abea1c5d1f1e60844ec Mon Sep 17 00:00:00 2001 From: zeromus Date: Sat, 27 Jul 2013 21:54:41 +0000 Subject: [PATCH] oops, default to a 128MB disk buffer instead of a 64k disk buffer. someone else can finetune this and make a gui --- BizHawk.MultiClient/Rewind.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/BizHawk.MultiClient/Rewind.cs b/BizHawk.MultiClient/Rewind.cs index 9436b569c9..101bfeecc3 100644 --- a/BizHawk.MultiClient/Rewind.cs +++ b/BizHawk.MultiClient/Rewind.cs @@ -7,7 +7,7 @@ namespace BizHawk.MultiClient public partial class MainForm { //adelikat: change the way this is constructed to control whether its on disk or in memory - private readonly StreamBlobDatabase RewindBuf = new StreamBlobDatabase(true,64*1024); + private readonly StreamBlobDatabase RewindBuf = new StreamBlobDatabase(true,128*1024*1024); private byte[] LastState; private bool RewindImpossible; private int RewindFrequency = 1;