From 887fc26b44a696c0ecf10c35046c353c6b57536d Mon Sep 17 00:00:00 2001 From: Filip Navara Date: Fri, 30 Dec 2005 01:28:29 +0000 Subject: [PATCH] Transform correctly the coordinates. svn path=/trunk/; revision=20453 --- reactos/subsys/win32k/objects/text.c | 1 + 1 file changed, 1 insertion(+) diff --git a/reactos/subsys/win32k/objects/text.c b/reactos/subsys/win32k/objects/text.c index 751e84e6cc0..602fe34f24f 100644 --- a/reactos/subsys/win32k/objects/text.c +++ b/reactos/subsys/win32k/objects/text.c @@ -1598,6 +1598,7 @@ NtGdiExtTextOut( DestRect.top = SpecifiedDestRect.top + dc->w.DCOrgY; DestRect.right = SpecifiedDestRect.right + dc->w.DCOrgX; DestRect.bottom = SpecifiedDestRect.bottom + dc->w.DCOrgY; + IntLPtoDP(dc, (LPRECT)&DestRect, 2); IntEngBitBlt( &BitmapObj->SurfObj, NULL, -- 2.17.1