From eed16fafc8c7b97e3d3e4b9b7c8489fd1f826730 Mon Sep 17 00:00:00 2001 From: adelikat Date: Sun, 30 Nov 2014 17:54:21 +0000 Subject: [PATCH] TasStateManager - don't check for null emulator nor IStatable, fail catastrophically if a core is not IStatable, they shouldn't have gotten this far if it wasn't --- .../movie/tasproj/TasStateManager.cs | 12 +++++------- 1 file changed, 5 insertions(+), 7 deletions(-) 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);