oops, default to a 128MB disk buffer instead of a 64k disk buffer. someone else can finetune this and make a gui

This commit is contained in:
zeromus 2013-07-27 21:54:41 +00:00
parent ea68d4b71d
commit edd5ddbd35
1 changed files with 1 additions and 1 deletions

View File

@ -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;