revert back to 1024 * 1024, but in a way that makes stylecop happy
This commit is contained in:
parent
548ff15e33
commit
b7869c2c70
|
@ -69,7 +69,7 @@ namespace BizHawk.Client.Common
|
|||
|
||||
if (RewindActive)
|
||||
{
|
||||
var capacity = Global.Config.Rewind.BufferSize * 1048576L;
|
||||
var capacity = Global.Config.Rewind.BufferSize * (long)(1024 * 1024);
|
||||
_rewindBuffer = new StreamBlobDatabase(Global.Config.Rewind.OnDisk, capacity, BufferManage);
|
||||
|
||||
_rewindThread = new RewindThreader(CaptureInternal, RewindInternal, Global.Config.Rewind.IsThreaded);
|
||||
|
|
Loading…
Reference in New Issue