Index: reactos/win32ss/gdi/ntgdi/freetype.c =================================================================== --- reactos/win32ss/gdi/ntgdi/freetype.c (revision 75066) +++ reactos/win32ss/gdi/ntgdi/freetype.c (working copy) @@ -1563,7 +1563,10 @@ Descent = pOS2->usWinDescent; } -#if 0 /* This (Wine) code doesn't seem to work correctly for us, cmd issue */ +#if 1 + TM->tmAscent = Face->size->metrics.ascender >> 6; + TM->tmDescent = (-Face->size->metrics.descender) >> 6; +#elif 0 /* This (Wine) code doesn't seem to work correctly for us, cmd issue */ TM->tmAscent = (FT_MulFix(Ascent, YScale) + 32) >> 6; TM->tmDescent = (FT_MulFix(Descent, YScale) + 32) >> 6; #else /* This (ros) code was previously affected by a FreeType bug, but it works now */