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.
This commit is contained in:
feos 2015-07-31 00:04:01 +03:00
parent 0d87c8330c
commit 90cdbc1d1f
1 changed files with 1 additions and 1 deletions

View File

@ -477,7 +477,7 @@ namespace BizHawk.Client.Common
private int? DivergantPoint(List<string> currentLog, List<string> newLog)
{
int max = newLog.Count;
if (currentLog.Count > newLog.Count)
if (currentLog.Count < newLog.Count)
{
max = currentLog.Count;
}