revert back to 1024 * 1024, but in a way that makes stylecop happy

This commit is contained in:
adelikat 2020-01-24 20:11:37 -06:00
parent 548ff15e33
commit b7869c2c70
1 changed files with 1 additions and 1 deletions

View File

@ -69,7 +69,7 @@ namespace BizHawk.Client.Common
if (RewindActive) 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); _rewindBuffer = new StreamBlobDatabase(Global.Config.Rewind.OnDisk, capacity, BufferManage);
_rewindThread = new RewindThreader(CaptureInternal, RewindInternal, Global.Config.Rewind.IsThreaded); _rewindThread = new RewindThreader(CaptureInternal, RewindInternal, Global.Config.Rewind.IsThreaded);