|
@@ -351,14 +351,14 @@ void spSkeleton_updateCache (spSkeleton* self) {
|
|
constraintCount = ikCount + transformCount + pathCount;
|
|
constraintCount = ikCount + transformCount + pathCount;
|
|
|
|
|
|
i = 0;
|
|
i = 0;
|
|
- outer:
|
|
|
|
|
|
+ continue_outer:
|
|
for (; i < constraintCount; i++) {
|
|
for (; i < constraintCount; i++) {
|
|
for (ii = 0; ii < ikCount; ii++) {
|
|
for (ii = 0; ii < ikCount; ii++) {
|
|
spIkConstraint* ikConstraint = ikConstraints[ii];
|
|
spIkConstraint* ikConstraint = ikConstraints[ii];
|
|
if (ikConstraint->data->order == i) {
|
|
if (ikConstraint->data->order == i) {
|
|
_sortIkConstraint(internal, ikConstraint);
|
|
_sortIkConstraint(internal, ikConstraint);
|
|
i++;
|
|
i++;
|
|
- goto outer;
|
|
|
|
|
|
+ goto continue_outer;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
|
|
@@ -367,7 +367,7 @@ void spSkeleton_updateCache (spSkeleton* self) {
|
|
if (transformConstraint->data->order == i) {
|
|
if (transformConstraint->data->order == i) {
|
|
_sortTransformConstraint(internal, transformConstraint);
|
|
_sortTransformConstraint(internal, transformConstraint);
|
|
i++;
|
|
i++;
|
|
- goto outer;
|
|
|
|
|
|
+ goto continue_outer;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
|
|
@@ -376,7 +376,7 @@ void spSkeleton_updateCache (spSkeleton* self) {
|
|
if (pathConstraint->data->order == i) {
|
|
if (pathConstraint->data->order == i) {
|
|
_sortPathConstraint(internal, pathConstraint);
|
|
_sortPathConstraint(internal, pathConstraint);
|
|
i++;
|
|
i++;
|
|
- goto outer;
|
|
|
|
|
|
+ goto continue_outer;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|