zwinder - hack in some settings from the ui
This commit is contained in:
parent
3b8e0ce39d
commit
7dd78a9fa4
|
@ -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)
|
||||
|
|
|
@ -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;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue