From 90cdbc1d1fd969a68ee9cfbeefa2686838682d46 Mon Sep 17 00:00:00 2001 From: feos Date: Fri, 31 Jul 2015 00:04:01 +0300 Subject: [PATCH] tastudio: fix crash when comparing branches with identical input and different length. it was setting loop count basing on a longer branch (if it's current), the shorter one going OOB. --- BizHawk.Client.Common/movie/tasproj/TasMovie.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/BizHawk.Client.Common/movie/tasproj/TasMovie.cs b/BizHawk.Client.Common/movie/tasproj/TasMovie.cs index c32908ae32..a8abdf9ddb 100644 --- a/BizHawk.Client.Common/movie/tasproj/TasMovie.cs +++ b/BizHawk.Client.Common/movie/tasproj/TasMovie.cs @@ -477,7 +477,7 @@ namespace BizHawk.Client.Common private int? DivergantPoint(List currentLog, List newLog) { int max = newLog.Count; - if (currentLog.Count > newLog.Count) + if (currentLog.Count < newLog.Count) { max = currentLog.Count; }