settings hacks - actually map compression to a compression settings, give rewind an "off" switch, hacked to small states for now

This commit is contained in:
adelikat 2020-06-19 10:18:04 -05:00
parent 02a2efbed1
commit 84c691021b
2 changed files with 13 additions and 5 deletions

View File

@ -24,7 +24,7 @@ namespace BizHawk.Client.Common
public Zwinder(int targetFrameLength, IBinaryStateable stateSource, IRewindSettings settings)
{
long targetSize = settings.BufferSize * 1024 * 1024;
bool kompress = settings.EnabledSmall;
bool kompress = settings.UseDelta;
if (targetSize < 65536)
throw new ArgumentOutOfRangeException(nameof(targetSize));
if (targetFrameLength < 1)

View File

@ -865,10 +865,18 @@ namespace BizHawk.Client.EmuHawk
public void CreateRewinder()
{
Rewinder?.Dispose();
Rewinder = Emulator.HasSavestates() && Config.Rewind.EnabledSmall // TODO: replace this with just a single "enabled"?
? new Zwinder(600, Emulator.AsStatable(), Config.Rewind)
// ? new Rewinder(Emulator.AsStatable(), Config.Rewind)
: null;
if (Config.Rewind.EnabledSmall)
{
Rewinder = Emulator.HasSavestates() && Config.Rewind.EnabledSmall // TODO: replace this with just a single "enabled"?
? new Zwinder(600, Emulator.AsStatable(), Config.Rewind)
// ? new Rewinder(Emulator.AsStatable(), Config.Rewind)
: null;
}
else
{
Rewinder = null;
}
}
private FirmwareManager FirmwareManager => GlobalWin.FirmwareManager;