mirror of
https://github.com/ApfelTeeSaft/reactos.git
synced 2026-08-26 19:33:31 +00: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 https://github.com/reactos/reactos/commit/50b193239bd9554a4e7cf671a001dc12ec726454 (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