This commit is contained in:
adelikat 2020-06-19 10:02:47 -05:00
parent 7dd78a9fa4
commit 02a2efbed1
1 changed files with 1 additions and 1 deletions

View File

@ -23,7 +23,7 @@ namespace BizHawk.Client.Common
/// <param name="targetFrameLength">desired frame length (number of emulated frames you can go back before running out of buffer)</param>
public Zwinder(int targetFrameLength, IBinaryStateable stateSource, IRewindSettings settings)
{
long targetSize = settings.BufferSize * 1024 * 10248;
long targetSize = settings.BufferSize * 1024 * 1024;
bool kompress = settings.EnabledSmall;
if (targetSize < 65536)
throw new ArgumentOutOfRangeException(nameof(targetSize));