diff options
Diffstat (limited to 'src/vmmouse.c')
-rw-r--r-- | src/vmmouse.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/vmmouse.c b/src/vmmouse.c index bd3763b..8c9ba55 100644 --- a/src/vmmouse.c +++ b/src/vmmouse.c @@ -32,11 +32,11 @@ * * This is a modified version of the mouse input driver * provided in Xserver/hw/xfree86/input/mouse/mouse.c - * + * * Although all data is read using the vmmouse protocol, notification * is still done through the PS/2 port, so all the basic code for * interacting with the port is retained. - * + * */ @@ -94,8 +94,8 @@ * Version constants */ #define VMMOUSE_MAJOR_VERSION 12 -#define VMMOUSE_MINOR_VERSION 4 -#define VMMOUSE_PATCHLEVEL 3 +#define VMMOUSE_MINOR_VERSION 5 +#define VMMOUSE_PATCHLEVEL 1 #define VMMOUSE_DRIVER_VERSION \ (VMMOUSE_MAJOR_VERSION * 65536 + VMMOUSE_MINOR_VERSION * 256 + VMMOUSE_PATCHLEVEL) #define VMMOUSE_DRIVER_VERSION_STRING \ |