Tastudio - fix loading of projects

This commit is contained in:
adelikat 2014-11-19 15:54:00 +00:00
parent d58b00b72b
commit ea6966a911
1 changed files with 1 additions and 1 deletions

View File

@ -398,7 +398,7 @@ namespace BizHawk.Client.Common
else if (line[0] == '|') else if (line[0] == '|')
{ {
newLog.Add(line); newLog.Add(line);
if (!TimelineBranchFrame.HasValue && line != _log[counter]) if (!TimelineBranchFrame.HasValue && counter < _log.Count && line != _log[counter])
{ {
TimelineBranchFrame = counter; TimelineBranchFrame = counter;
} }