[WIN32SS:ENG] Fix Y coordinate of the software pointer exclude rectangle (#9116)

Crazy that this typo survived two decades, but here we are, that might fix some GDI test.

Bug was introduced in 50b193239b (r12035).
This commit is contained in:
Ahmed Arif
2026-06-08 12:48:12 +02:00
committed by GitHub
parent b1f04786e1
commit 984657bdf0

View File

@@ -543,7 +543,7 @@ EngSetPointerShape(
if (prcl != NULL)
{
prcl->left = x - pgp->HotSpot.x;
prcl->top = y - pgp->HotSpot.x;
prcl->top = y - pgp->HotSpot.y;
prcl->right = prcl->left + pgp->Size.cx;
prcl->bottom = prcl->top + pgp->Size.cy;
}