From 6527b98476f78d7d2ce155df450039777df609bc Mon Sep 17 00:00:00 2001 From: adelikat Date: Sat, 25 Jan 2020 11:40:43 -0600 Subject: [PATCH] TasSTateManager - at least consolidate the Global usage problem, until there's a solution to be found --- BizHawk.Client.Common/movie/tasproj/TasStateManager.cs | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/BizHawk.Client.Common/movie/tasproj/TasStateManager.cs b/BizHawk.Client.Common/movie/tasproj/TasStateManager.cs index 980d60a73e..b55c5bedb8 100644 --- a/BizHawk.Client.Common/movie/tasproj/TasStateManager.cs +++ b/BizHawk.Client.Common/movie/tasproj/TasStateManager.cs @@ -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 {