Oops, r346889 broke showing of the mouse cursor after clearing, by

forgetting to tell the bitmap-copying clearing method to preserve the
cursor.
This commit is contained in:
Bruce Evans 2019-04-29 15:58:05 +00:00
parent c0ce6f7d91
commit 77073527cb
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=346890

View file

@ -496,7 +496,7 @@ VGLClear(VGLBitmap *object, u_long color)
for (i = 0; i < object->VXsize; i++)
bcopy(&color, src.Bitmap + i * object->PixelBytes, object->PixelBytes);
for (i = 0; i < object->VYsize; i++)
__VGLBitmapCopy(&src, 0, 0, object, 0, i, object->VXsize, 1);
__VGLBitmapCopy(&src, 0, 0, object, 0, i, object->VXsize, -1);
break;
case VIDBUF8X: