[aat] Adjust last range

Otherwise a user cluster value of -1 would have tripped us.
This commit is contained in:
Behdad Esfahbod 2023-01-10 11:06:20 -07:00
parent e28c158c35
commit e122fe2acf
1 changed files with 4 additions and 0 deletions

View File

@ -162,6 +162,10 @@ hb_aat_map_builder_t::compile (hb_aat_map_t &m)
active_features.remove_ordered (feature - active_features.arrayZ);
}
}
for (auto &chain_flags : m.chain_flags)
// With our above setup this value is one less than desired; adjust it.
chain_flags.tail().cluster_last = HB_FEATURE_GLOBAL_END;
}