Go back to hiding the cursor with GreMovePointer, instead of setting NULL bitmaps. While MSDN states that psoColor and psoMask can both be NULL in DrvSetPointerShape, it doesn't explicitly say anything about both being NULL at the same time. VBox driver doesn't expect that and will crash, so most likely windows doesn't do this.

svn path=/trunk/; revision=50375
This commit is contained in:
Timo Kreuzer 2011-01-12 21:15:46 +00:00
parent 4d273ac5b0
commit 936141aff8

View file

@ -147,15 +147,12 @@ UserSetCursor(
if (OldCursor && CurInfo->ShowingCursor)
{
/* Remove the cursor */
//GreMovePointer(hdcScreen, -1, -1);
GreMovePointer(hdcScreen, -1, -1);
DPRINT("Removing pointer!\n");
}
CurInfo->CurrentCursorObject = NULL;
CurInfo->ShowingCursor = 0;
/* Unset the bitmaps */
GreSetPointerShape(hdcScreen, NULL, NULL, 0, 0, 0, 0);
}
/* Return the old cursor */