mirror of
https://github.com/reactos/reactos.git
synced 2026-06-13 11:23:31 +08:00
[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:
@@ -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;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user