Minor
This commit is contained in:
parent
eb5ddd32bf
commit
be45677ab6
|
@ -270,7 +270,7 @@ struct SingleSubst
|
||||||
/* TODO(serialize) check for wrap-around */
|
/* TODO(serialize) check for wrap-around */
|
||||||
delta = substitutes[0] - glyphs[0];
|
delta = substitutes[0] - glyphs[0];
|
||||||
for (unsigned int i = 1; i < num_glyphs; i++)
|
for (unsigned int i = 1; i < num_glyphs; i++)
|
||||||
if (delta != substitutes[i] - glyphs[i]) {
|
if (delta != (int) (substitutes[i] - glyphs[i])) {
|
||||||
format = 2;
|
format = 2;
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue