Skip to content

Commit d6cf0a6

Browse files
Fix MultiIntFieldInternal error message
1 parent 4b6896f commit d6cf0a6

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Runtime/CustomVectors.cs

+2-2
Original file line numberDiff line numberDiff line change
@@ -660,9 +660,9 @@ internal static void MultiIntFieldInternal(Rect position, GUIContent[] subLabels
660660
if (subLabels.Length != values.Length)
661661
{
662662
if (subLabels.Length < values.Length)
663-
Debug.LogError("CustomVectors MultiFloatField has fewer subLabels than values assigned to it.");
663+
Debug.LogError("CustomVectors MultiIntField has fewer subLabels than values assigned to it.");
664664
else
665-
Debug.LogError("CustomVectors MultiFloatField has more subLabels than values assigned to it.");
665+
Debug.LogError("CustomVectors MultiIntField has more subLabels than values assigned to it.");
666666

667667
return;
668668
}

0 commit comments

Comments
 (0)