mirror of
https://github.com/reactos/reactos.git
synced 2024-12-28 18:15:11 +00:00
[GDI32] Fix MS build
Fix old uncovered code.
This commit is contained in:
parent
b751c31c74
commit
44b11ad6a9
1 changed files with 2 additions and 2 deletions
|
@ -866,7 +866,7 @@ OffsetViewportOrgEx(
|
|||
|
||||
if (lpPoint)
|
||||
{
|
||||
*lpPoint = (POINT)pdcattr->ptlViewportOrg;
|
||||
*lpPoint = pdcattr->ptlViewportOrg;
|
||||
if ( pdcattr->dwLayout & LAYOUT_RTL) lpPoint->x = -lpPoint->x;
|
||||
}
|
||||
|
||||
|
@ -917,7 +917,7 @@ OffsetWindowOrgEx(
|
|||
|
||||
if ( lpPoint )
|
||||
{
|
||||
*lpPoint = (POINT)pdcattr->ptlWindowOrg;
|
||||
*lpPoint = pdcattr->ptlWindowOrg;
|
||||
//lpPoint->x = pdcattr->lWindowOrgx;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue