From f1730b2b3825dc3132b0fd57fdefff7e8fa0ad45 Mon Sep 17 00:00:00 2001 From: John Date: Fri, 1 Jul 2016 23:44:39 +0800 Subject: [PATCH] [csharp] Fixed missing paren. --- spine-csharp/src/SkeletonJson.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/spine-csharp/src/SkeletonJson.cs b/spine-csharp/src/SkeletonJson.cs index 2dfeb2744..bcecaeb85 100644 --- a/spine-csharp/src/SkeletonJson.cs +++ b/spine-csharp/src/SkeletonJson.cs @@ -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);