[hangul] Fix decomposition

Part of https://github.com/behdad/harfbuzz/pull/10
This commit is contained in:
Behdad Esfahbod 2014-01-02 14:04:30 +08:00
parent 32478656ce
commit bdb20dafc3
1 changed files with 2 additions and 2 deletions

View File

@ -165,8 +165,8 @@ preprocess_text_hangul (const hb_ot_shape_plan_t *plan,
bool has_glyph = font->get_glyph (s, 0, &glyph);
unsigned int lindex = (s - SBase) / NCount;
unsigned int nindex = (s - SBase) % NCount;
unsigned int vindex = nindex / VCount;
unsigned int tindex = nindex % VCount;
unsigned int vindex = nindex / TCount;
unsigned int tindex = nindex % TCount;
if (tindex && has_glyph)
goto next; /* <LVT> supported. Nothing to do. */