[c] Resolves broken CI.

Correctly uses clang-format 13.0.1.
This commit is contained in:
Luke Ingram 2025-09-24 14:29:48 -04:00
parent e90eefc2c4
commit d567a19101
2 changed files with 3 additions and 3 deletions

View File

@ -293,7 +293,7 @@ void spIkConstraint_apply2(spBone *parent, spBone *child, float targetX, float t
} }
} }
} }
break_outer: { break_outer : {
float os = ATAN2(cy, cx) * s2; float os = ATAN2(cy, cx) * s2;
float rotation = parent->arotation; float rotation = parent->arotation;
a1 = (a1 - os) * RAD_DEG + o1 - rotation; a1 = (a1 - os) * RAD_DEG + o1 - rotation;

View File

@ -408,7 +408,7 @@ static const char *parse_object(Json *item, const char *value) {
if (*value != ':') { if (*value != ':') {
ep = value; ep = value;
return 0; return 0;
} /* fail! */ } /* fail! */
value = skip(parse_value(child, skip(value + 1))); /* skip any spacing, get the value. */ value = skip(parse_value(child, skip(value + 1))); /* skip any spacing, get the value. */
if (!value) return 0; if (!value) return 0;
item->size = 1; item->size = 1;
@ -428,7 +428,7 @@ static const char *parse_object(Json *item, const char *value) {
if (*value != ':') { if (*value != ':') {
ep = value; ep = value;
return 0; return 0;
} /* fail! */ } /* fail! */
value = skip(parse_value(child, skip(value + 1))); /* skip any spacing, get the value. */ value = skip(parse_value(child, skip(value + 1))); /* skip any spacing, get the value. */
if (!value) return 0; if (!value) return 0;
item->size++; item->size++;