mirror of
git://source.winehq.org/git/wine.git
synced 2024-11-05 18:01:34 +00:00
gdi32: Fix typo in get_transformed_bbox() trace message.
Signed-off-by: Byeongsik Jeon <bsjeon@hanmail.net> Signed-off-by: Huw Davies <huw@codeweavers.com> Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
parent
d6e83e3027
commit
062aa9a614
1 changed files with 1 additions and 1 deletions
|
@ -2869,7 +2869,7 @@ static FT_BBox get_transformed_bbox( const FT_Glyph_Metrics *metrics,
|
|||
{
|
||||
vec.x = metrics->horiBearingX + xc * metrics->width;
|
||||
vec.y = metrics->horiBearingY - yc * metrics->height;
|
||||
TRACE( "Vec %ld,i %ld\n", vec.x, vec.y );
|
||||
TRACE( "Vec %ld, %ld\n", vec.x, vec.y );
|
||||
pFT_Vector_Transform( &vec, &metrices[matrix_vert] );
|
||||
if (xc == 0 && yc == 0)
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue