Commit 70cdd2ff authored by Aric Stewart's avatar Aric Stewart Committed by Alexandre Julliard

gdi32: Vertical glyph replacements are not applied in GetGlyphOutline if glyph…

gdi32: Vertical glyph replacements are not applied in GetGlyphOutline if glyph is specified by index.
parent 30fc34b8
......@@ -5905,7 +5905,7 @@ static DWORD get_glyph_outline(GdiFont *incoming_font, UINT glyph, UINT format,
font->font_desc.matrix.eM21, font->font_desc.matrix.eM22);
if(format & GGO_GLYPH_INDEX) {
glyph_index = get_GSUB_vert_glyph(incoming_font,glyph);
glyph_index = glyph;
original_index = glyph;
format &= ~GGO_GLYPH_INDEX;
} else {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment