From a5d099afa96f096e8a32789a7286adca00b47ca8 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Jean-S=C3=A9bastien=20P=C3=A9dron?= Date: Thu, 21 Aug 2014 10:54:39 +0000 Subject: [PATCH] vt(4): Fix an inconsistency between the mouse cursor bitmap and its mask MFC after: 1 week --- sys/dev/vt/font/vt_mouse_cursor.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/sys/dev/vt/font/vt_mouse_cursor.c b/sys/dev/vt/font/vt_mouse_cursor.c index a35de006a65..0219c7c91db 100644 --- a/sys/dev/vt/font/vt_mouse_cursor.c +++ b/sys/dev/vt/font/vt_mouse_cursor.c @@ -43,7 +43,7 @@ struct mouse_cursor vt_default_mouse_pointer = { 0x7c, /* "_*****_ " */ 0x7e, /* "_******_" */ 0x68, /* "_**_****" */ - 0x4c, /* "_*__**__" */ + 0x4c, /* "_*__**_ " */ 0x0c, /* " _ _**_ " */ 0x06, /* " _**_" */ 0x06, /* " _**_" */ @@ -58,8 +58,8 @@ struct mouse_cursor vt_default_mouse_pointer = { 0xfe, /* "_______ " */ 0xff, /* "________" */ 0xff, /* "________" */ - 0xff, /* "________" */ - 0x1e, /* " ____ " */ + 0xfe, /* "_______ " */ + 0x5e, /* " _ ____ " */ 0x0f, /* " ____" */ 0x0f, /* " ____" */ 0x0f, /* " ____" */ -- 2.45.2