Browse Source

[csharp] Fixed missing paren.

John 9 years ago
parent
commit
f1730b2b38
1 changed files with 1 additions and 1 deletions
  1. 1 1
      spine-csharp/src/SkeletonJson.cs

+ 1 - 1
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);