From c668ac40c1b3170b9be529400b3e16df925243b1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?G=C3=A9=20van=20Geldorp?= Date: Wed, 19 Jan 2005 14:15:29 +0000 Subject: [PATCH] tinus Prevent part of "My Computer" icon being erased during startup svn path=/trunk/; revision=13132 --- reactos/subsys/win32k/ntuser/cursoricon.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/reactos/subsys/win32k/ntuser/cursoricon.c b/reactos/subsys/win32k/ntuser/cursoricon.c index e7b05719685..d7157dc77d7 100644 --- a/reactos/subsys/win32k/ntuser/cursoricon.c +++ b/reactos/subsys/win32k/ntuser/cursoricon.c @@ -220,7 +220,7 @@ IntSetCursor(PWINSTATION_OBJECT WinStaObject, PCURICON_OBJECT NewCursor, NewCursor->IconInfo.yHotspot, CurInfo->x, CurInfo->y, - NULL, + &(GDIDEV(SurfObj)->Pointer.Exclude), SPS_CHANGE); DPRINT("SetCursor: DrvSetPointerShape() returned %x\n", GDIDEV(SurfObj)->Pointer.Status); @@ -238,7 +238,7 @@ IntSetCursor(PWINSTATION_OBJECT WinStaObject, PCURICON_OBJECT NewCursor, NewCursor->IconInfo.yHotspot, CurInfo->x, CurInfo->y, - NULL, + &(GDIDEV(SurfObj)->Pointer.Exclude), SPS_CHANGE); GDIDEV(SurfObj)->Pointer.MovePointer = EngMovePointer; }