gdi32: Fix typos for GET_DC_PHYSDEV.

Signed-off-by: Zhiyi Zhang <zzhang@codeweavers.com>
Signed-off-by: Huw Davies <huw@codeweavers.com>
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
Zhiyi Zhang 2021-04-29 10:53:24 +08:00 committed by Alexandre Julliard
parent def07b3f69
commit 3ba4412be6
2 changed files with 2 additions and 2 deletions

View File

@ -876,7 +876,7 @@ static BOOL CDECL windrv_ArcTo( PHYSDEV dev, INT left, INT top, INT right, INT b
BOOL ret;
lock_surface( physdev );
dev = GET_NEXT_PHYSDEV( dev, pArc );
dev = GET_NEXT_PHYSDEV( dev, pArcTo );
ret = dev->funcs->pArcTo( dev, left, top, right, bottom, xstart, ystart, xend, yend );
unlock_surface( physdev );
return ret;

View File

@ -365,7 +365,7 @@ BOOL CDECL EMFDRV_ScaleWindowExtEx( PHYSDEV dev, INT xNum, INT xDenom, INT yNum,
DWORD CDECL EMFDRV_SetLayout( PHYSDEV dev, DWORD layout )
{
PHYSDEV next = GET_NEXT_PHYSDEV( dev, pSetMapMode );
PHYSDEV next = GET_NEXT_PHYSDEV( dev, pSetLayout );
EMFDRV_PDEVICE *physDev = get_emf_physdev( dev );
EMRSETLAYOUT emr;
DWORD ret;