mirror of
https://github.com/reactos/reactos.git
synced 2024-11-18 21:13:52 +00:00
Handle ETO_PDY more correctly (dy values still ignored)
svn path=/trunk/; revision=38203
This commit is contained in:
parent
3e2f6025fc
commit
869fc7ead9
1 changed files with 8 additions and 1 deletions
|
@ -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;
|
||||
|
|
Loading…
Reference in a new issue