[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 https://github.com/reactos/reactos/commit/50b193239bd9554a4e7cf671a001dc12ec726454 (r12035).
This commit is contained in:
Ahmed Arif
2026-06-08 13:48:12 +03:00
committed by GitHub
parent b1f04786e1
commit 984657bdf0
+1 -1
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;
}