mirror of
https://github.com/harfbuzz/harfbuzz.git
synced 2025-04-05 13:35:06 +00:00
[HVAC] Fix bug
Renders correctly now.
This commit is contained in:
parent
1cf7d9d0b0
commit
2b6a65671b
1 changed files with 2 additions and 2 deletions
|
@ -97,7 +97,7 @@ struct GlyphVariationDeltas
|
|||
const SparseVarRegionList &varRegionList) const
|
||||
{
|
||||
const HBUINT8 *p = deltaSets;
|
||||
for (unsigned i = 0; i < deltasCount; i++)
|
||||
for (unsigned i = 0; i < deltaSetCount; i++)
|
||||
{
|
||||
const GlyphVariationDelta &delta = StructAtOffsetUnaligned<const GlyphVariationDelta> (p, 0);
|
||||
|
||||
|
@ -114,7 +114,7 @@ struct GlyphVariationDeltas
|
|||
return_trace (false);
|
||||
|
||||
const HBUINT8 *p = deltaSets;
|
||||
for (unsigned i = 0; i < deltasCount; i++)
|
||||
for (unsigned i = 0; i < deltaSetCount; i++)
|
||||
{
|
||||
const GlyphVariationDelta &delta = StructAtOffsetUnaligned<const GlyphVariationDelta> (p, 0);
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue