[csharp] Fixed missing paren.

This commit is contained in:
John 2016-07-01 23:44:39 +08:00 committed by GitHub
parent 9f15d1be4a
commit f1730b2b38

View File

@ -450,7 +450,7 @@ namespace Spine {
frameIndex++;
}
timelines.Add(timeline);
duration = Math.Max(duration, timeline.frames[(timeline.FrameCount -1) * ColorTimeline.ENTRIES];
duration = Math.Max(duration, timeline.frames[(timeline.FrameCount - 1) * ColorTimeline.ENTRIES]);
} else if (timelineName == "attachment") {
var timeline = new AttachmentTimeline(values.Count);