From fbb47b2297d07bef529ba56567a03067dfb46e7a Mon Sep 17 00:00:00 2001 From: adelikat Date: Mon, 25 May 2020 12:47:30 -0500 Subject: [PATCH] StateManagerDecay - pass in Global.Emulator.Frame instead of referencing it directly --- src/BizHawk.Client.Common/movie/tasproj/StateManagerDecay.cs | 4 ++-- src/BizHawk.Client.Common/movie/tasproj/TasStateManager.cs | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/BizHawk.Client.Common/movie/tasproj/StateManagerDecay.cs b/src/BizHawk.Client.Common/movie/tasproj/StateManagerDecay.cs index e2cee4bf93..ed54fbdbb9 100644 --- a/src/BizHawk.Client.Common/movie/tasproj/StateManagerDecay.cs +++ b/src/BizHawk.Client.Common/movie/tasproj/StateManagerDecay.cs @@ -64,11 +64,11 @@ namespace BizHawk.Client.Common } // todo: go through all states once, remove as many as we need. refactor to not need goto - public void Trigger(int decayStates) + public void Trigger(int frame, int decayStates) { for (; decayStates > 0 && _tsm.Count > 1;) { - int baseStateIndex = _tsm.GetStateIndexByFrame(Global.Emulator.Frame); + int baseStateIndex = _tsm.GetStateIndexByFrame(frame); int baseStateFrame = _tsm.GetStateFrameByIndex(baseStateIndex) / _step; // reduce right away int forwardPriority = -1000000; int backwardPriority = -1000000; diff --git a/src/BizHawk.Client.Common/movie/tasproj/TasStateManager.cs b/src/BizHawk.Client.Common/movie/tasproj/TasStateManager.cs index 3c4dc036d1..8b29445dc8 100644 --- a/src/BizHawk.Client.Common/movie/tasproj/TasStateManager.cs +++ b/src/BizHawk.Client.Common/movie/tasproj/TasStateManager.cs @@ -301,7 +301,7 @@ namespace BizHawk.Client.Common { if (Count + 1 > MaxStates) { - _decay.Trigger(Count + 1 - MaxStates); + _decay.Trigger(Emulator.Frame, Count + 1 - MaxStates); } }