diff --git a/BizHawk.Client.Common/movie/tasproj/TasStateManager.cs b/BizHawk.Client.Common/movie/tasproj/TasStateManager.cs index 492c4b26bc..61de426f6b 100644 --- a/BizHawk.Client.Common/movie/tasproj/TasStateManager.cs +++ b/BizHawk.Client.Common/movie/tasproj/TasStateManager.cs @@ -54,14 +54,12 @@ namespace BizHawk.Client.Common var cap = Settings.Cap; int limit = 0; - if (!Global.Emulator.IsNull()) - { - _expectedStateSize = Core.SaveStateBinary().Length; + + _expectedStateSize = Core.SaveStateBinary().Length; - if (_expectedStateSize > 0) - { - limit = cap / _expectedStateSize; - } + if (_expectedStateSize > 0) + { + limit = cap / _expectedStateSize; } States = new SortedList(limit);