I don't understand why we're clearing the rewind buffer, but if we want to do that, just do it, and don't deallocate + reallocate many megs of ram on every loadstate (#2282)

This commit is contained in:
nattthebear 2020-08-10 10:59:23 -04:00 committed by GitHub
parent f08ab6dda8
commit 2feece847f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 9 additions and 7 deletions

View File

@ -19,5 +19,7 @@ namespace BizHawk.Client.Common
void Suspend();
void Resume();
void Clear();
}
}

View File

@ -85,5 +85,10 @@ namespace BizHawk.Client.Common
{
// this possess no resources to dispose of, but other IRewinder impls might
}
public void Clear()
{
_buffer.InvalidateEnd(0);
}
}
}

View File

@ -887,17 +887,12 @@ namespace BizHawk.Client.EmuHawk
public IRewinder Rewinder { get; private set; }
public void CreateRewinder()
{
RecreateRewinder();
AddOnScreenMessage(Rewinder?.Active == true ? "Rewind started" : "Rewind disabled");
}
void RecreateRewinder()
{
Rewinder?.Dispose();
Rewinder = Emulator.HasSavestates() && Config.Rewind.Enabled
? new Zwinder(Emulator.AsStatable(), Config.Rewind)
: null;
AddOnScreenMessage(Rewinder?.Active == true ? "Rewind started" : "Rewind disabled");
}
private FirmwareManager FirmwareManager => GlobalWin.FirmwareManager;
@ -3992,7 +3987,7 @@ namespace BizHawk.Client.EmuHawk
//so purge rewind history when loading a state while doing a movie
if (!IsRewindSlave && MovieSession.Movie.IsActive())
{
RecreateRewinder();
Rewinder?.Clear();
}
if (!suppressOSD)