Commit 1ff63bb8 authored by Aric Stewart's avatar Aric Stewart Committed by Alexandre Julliard

gdi32: Vertical glyphs can be written tategaki even without a vertical GSUB feature.

It is only based on the presence of the '@' character in the font name.
parent accad095
......@@ -5915,7 +5915,7 @@ static DWORD get_glyph_outline(GdiFont *incoming_font, UINT glyph, UINT format,
FT_Matrix transMat = identityMat;
FT_Matrix transMatUnrotated;
BOOL needsTransform = FALSE;
BOOL tategaki = (font->GSUB_Table != NULL);
BOOL tategaki = (font->name[0] == '@');
UINT original_index;
LONG avgAdvance = 0;
FT_Fixed em_scale;
......
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