From f6365a03e23a8d046f12c22d466489862524f37e Mon Sep 17 00:00:00 2001 From: YoshiRulz Date: Sat, 25 Jan 2020 13:09:25 +1000 Subject: [PATCH] Por que no los dos? --- BizHawk.Client.Common/rewind/Rewinder.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/BizHawk.Client.Common/rewind/Rewinder.cs b/BizHawk.Client.Common/rewind/Rewinder.cs index d1d6092bf3..ba2e71c25b 100644 --- a/BizHawk.Client.Common/rewind/Rewinder.cs +++ b/BizHawk.Client.Common/rewind/Rewinder.cs @@ -69,7 +69,7 @@ namespace BizHawk.Client.Common if (RewindActive) { - var capacity = Global.Config.Rewind.BufferSize * (long)(1024 * 1024); + var capacity = Global.Config.Rewind.BufferSize * 1024L * 1024L; _rewindBuffer = new StreamBlobDatabase(Global.Config.Rewind.OnDisk, capacity, BufferManage); _rewindThread = new RewindThreader(CaptureInternal, RewindInternal, Global.Config.Rewind.IsThreaded);