From 4e33fbbd2954764c39d9469f9a7a1ed2a977dc42 Mon Sep 17 00:00:00 2001 From: Volker Ruppert Date: Fri, 6 Mar 2009 23:48:25 +0000 Subject: [PATCH] - changed USB HID version for mouse and tablet to 1.00 (was: 0.01 !) --- bochs/iodev/usb_hid.cc | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/bochs/iodev/usb_hid.cc b/bochs/iodev/usb_hid.cc index f759b556c..6ef94b5c6 100644 --- a/bochs/iodev/usb_hid.cc +++ b/bochs/iodev/usb_hid.cc @@ -1,5 +1,5 @@ ///////////////////////////////////////////////////////////////////////// -// $Id: usb_hid.cc,v 1.16 2009-03-03 18:29:51 vruppert Exp $ +// $Id: usb_hid.cc,v 1.17 2009-03-06 23:48:25 vruppert Exp $ ///////////////////////////////////////////////////////////////////////// // // Copyright (C) 2009 Volker Ruppert @@ -111,7 +111,7 @@ static const Bit8u bx_mouse_config_descriptor[] = { /* HID descriptor */ 0x09, /* u8 bLength; */ 0x21, /* u8 bDescriptorType; */ - 0x01, 0x00, /* u16 HID_class */ + 0x00, 0x01, /* u16 HID_class */ 0x00, /* u8 country_code */ 0x01, /* u8 num_descriptors */ 0x22, /* u8 type; Report */ @@ -165,7 +165,7 @@ static const Bit8u bx_tablet_config_descriptor[] = { /* HID descriptor */ 0x09, /* u8 bLength; */ 0x21, /* u8 bDescriptorType; */ - 0x01, 0x00, /* u16 HID_class */ + 0x00, 0x01, /* u16 HID_class */ 0x00, /* u8 country_code */ 0x01, /* u8 num_descriptors */ 0x22, /* u8 type; Report */