From 36f53116b12271840a999b31fcbb24cfe8995ec9 Mon Sep 17 00:00:00 2001 From: feos Date: Sun, 29 Jan 2017 10:24:11 +0300 Subject: [PATCH] tastudio: quit pretending -1 is a legit branchHash seems to fix #785 --- BizHawk.Client.Common/movie/tasproj/TasStateManager.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/BizHawk.Client.Common/movie/tasproj/TasStateManager.cs b/BizHawk.Client.Common/movie/tasproj/TasStateManager.cs index cfb503fc31..a424d4f68c 100644 --- a/BizHawk.Client.Common/movie/tasproj/TasStateManager.cs +++ b/BizHawk.Client.Common/movie/tasproj/TasStateManager.cs @@ -773,7 +773,7 @@ namespace BizHawk.Client.Common } // Check if there are any branch states for the given frame. - if (!BranchStates.ContainsKey(frame) || BranchStates[frame] == null) + if (!BranchStates.ContainsKey(frame) || BranchStates[frame] == null || branchHash == -1) return -2; // Loop through branch states for the given frame.