gdi32: Fix typo in a condition (PVS-Studio).
This commit is contained in:
parent
f1ed09fdd9
commit
88e8102570
|
@ -1416,7 +1416,7 @@ BOOL WINAPI PlayEnhMetaFileRecord(
|
|||
if ((info->state.mode != MM_ISOTROPIC) && (info->state.mode != MM_ANISOTROPIC))
|
||||
break;
|
||||
if (!lpScaleWindowExtEx->xNum || !lpScaleWindowExtEx->xDenom ||
|
||||
!lpScaleWindowExtEx->xNum || !lpScaleWindowExtEx->yDenom)
|
||||
!lpScaleWindowExtEx->yNum || !lpScaleWindowExtEx->yDenom)
|
||||
break;
|
||||
info->state.wndExtX = MulDiv(info->state.wndExtX, lpScaleWindowExtEx->xNum,
|
||||
lpScaleWindowExtEx->xDenom);
|
||||
|
|
Loading…
Reference in New Issue