Por que no los dos?

This commit is contained in:
YoshiRulz 2020-01-25 13:09:25 +10:00
parent ca73e769ed
commit f6365a03e2
No known key found for this signature in database
GPG Key ID: C4DE31C245353FB7
1 changed files with 1 additions and 1 deletions

View File

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