Эх сурвалжийг харах

[csharp] Use explicit primitive declaration.

John 7 жил өмнө
parent
commit
df45ae9d22

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

@@ -366,7 +366,7 @@ namespace Spine {
 			}
 
 			// Queue complete if completed a loop iteration or the animation.
-			var complete = false;
+			bool complete = false;
 			if (entry.loop)
 				complete = duration == 0 || (trackLastWrapped > entry.trackTime % duration);
 			else