zwinder - hack in some settings from the ui

This commit is contained in:
adelikat 2020-06-19 10:00:15 -05:00
parent 3b8e0ce39d
commit 7dd78a9fa4
2 changed files with 4 additions and 2 deletions

View File

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

View File

@ -866,7 +866,7 @@ namespace BizHawk.Client.EmuHawk
{
Rewinder?.Dispose();
Rewinder = Emulator.HasSavestates() && Config.Rewind.EnabledSmall // TODO: replace this with just a single "enabled"?
? new Zwinder(1024 * 1024 * 32, 600, kompress: true, Emulator.AsStatable())
? new Zwinder(600, Emulator.AsStatable(), Config.Rewind)
// ? new Rewinder(Emulator.AsStatable(), Config.Rewind)
: null;
}