Browse Source

[csharp] Fixed a typo in SkeletonBinary.cs that led to a compile error.

Harald Csaszar 6 năm trước cách đây
mục cha
commit
263fd2b51b
1 tập tin đã thay đổi với 1 bổ sung1 xóa
  1. 1 1
      spine-csharp/src/SkeletonBinary.cs

+ 1 - 1
spine-csharp/src/SkeletonBinary.cs

@@ -328,7 +328,7 @@ namespace Spine {
 			if (defaultSkin) {
 				slotCount = input.ReadInt(true);
 				if (slotCount == 0) return null;
-				skin = new Skin("default"));
+				skin = new Skin("default");
 			} else {
 				skin = new Skin(input.ReadStringRef());
 				Object[] bones = skin.bones.Resize(input.ReadInt(true)).Items;