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:
parent
ea68d4b71d
commit
edd5ddbd35
|
@ -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;
|
||||
|
|
Loading…
Reference in New Issue