Handle ETO_PDY more correctly (dy values still ignored)

svn path=/trunk/; revision=38203
This commit is contained in:
Timo Kreuzer 2008-12-20 21:01:14 +00:00
parent 3e2f6025fc
commit 869fc7ead9

View file

@ -3669,7 +3669,14 @@ NtGdiExtTextOutW(
}
else
{
TextLeft += Dx[i] << 6;
if (fuOptions & ETO_PDY)
{
TextLeft += Dx[i*2] << 6;
}
else
{
TextLeft += Dx[i] << 6;
}
// DbgPrint("new TextLeft2: %d\n", TextLeft);
}
previous = glyph_index;