TasSTateManager - at least consolidate the Global usage problem, until there's a solution to be found

This commit is contained in:
adelikat 2020-01-25 11:40:43 -06:00
parent 3ce88eaa3b
commit 6527b98476
1 changed files with 3 additions and 1 deletions

View File

@ -20,6 +20,8 @@ namespace BizHawk.Client.Common
// TODO: pass this in, and find a solution to a stale reference (this is instantiated BEFORE a new core instance is made, making this one stale if it is simply set in the constructor
private IStatable Core => Global.Emulator.AsStatable();
private IEmulator Emulator => Global.Emulator;
private readonly StateManagerDecay _decay;
private readonly TasMovie _movie;
@ -112,7 +114,7 @@ namespace BizHawk.Client.Common
public void Capture(bool force = false)
{
bool shouldCapture;
int frame = Global.Emulator.Frame;
int frame = Emulator.Frame;
if (_movie.StartsFromSavestate && frame == 0) // Never capture frame 0 on savestate anchored movies since we have it anyway
{