diff options
Diffstat (limited to 'lib/libvgl/mouse.c')
-rw-r--r-- | lib/libvgl/mouse.c | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/lib/libvgl/mouse.c b/lib/libvgl/mouse.c index 010a1b7b9c52..c4019fd7606f 100644 --- a/lib/libvgl/mouse.c +++ b/lib/libvgl/mouse.c @@ -29,8 +29,6 @@ */ #include <sys/cdefs.h> -__FBSDID("$FreeBSD$"); - #include <stdio.h> #include <sys/types.h> #include <sys/ioctl.h> @@ -284,22 +282,19 @@ VGLMouseInit(int mode) { struct mouse_info mouseinfo; VGLBitmap *ormask; - int andmask, border, error, i, interior; + int border, error, i, interior; switch (VGLModeInfo.vi_mem_model) { case V_INFO_MM_PACKED: case V_INFO_MM_PLANAR: - andmask = 0x0f; border = 0x0f; interior = 0x04; break; case V_INFO_MM_VGAX: - andmask = 0x3f; border = 0x3f; interior = 0x24; break; default: - andmask = 0xff; border = BORDER; interior = INTERIOR; break; |