mirror of
git://source.winehq.org/git/wine.git
synced 2024-11-02 01:21:47 +00:00
usp10: Do not over increment glyph index in Chaining Contextual Substitution.
This commit is contained in:
parent
c23a5443c1
commit
6657bf2d69
1 changed files with 1 additions and 1 deletions
|
@ -1040,7 +1040,7 @@ static INT GSUB_apply_ChainContextSubst(const GSUB_LookupList* lookup, const GSU
|
|||
continue;
|
||||
}
|
||||
}
|
||||
return newIndex + 1;
|
||||
return newIndex;
|
||||
}
|
||||
}
|
||||
return -1;
|
||||
|
|
Loading…
Reference in a new issue