diff options
| author | cinap_lenrek <cinap_lenrek@gmx.de> | 2012-08-13 10:41:02 +0200 |
|---|---|---|
| committer | cinap_lenrek <cinap_lenrek@gmx.de> | 2012-08-13 10:41:02 +0200 |
| commit | 142a77c9dce3d0871d91023744f74c68a4973019 (patch) | |
| tree | b64f880c3c73b2478b96990d8ee51c6068040861 | |
| parent | 73e924d847dd7b6f2db6d66bca1d389a1e2342f2 (diff) | |
| download | plan9front-142a77c9dce3d0871d91023744f74c68a4973019.tar.xz | |
nusb/kb: increase mouse packet buffer from 32 to 64 bytes for Microsoft Sidewinder X5 Mouse (thanks Rexford Gibbs for reporting and testing)
| -rw-r--r-- | sys/src/cmd/nusb/kb/kb.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/src/cmd/nusb/kb/kb.c b/sys/src/cmd/nusb/kb/kb.c index 7fdc97b6a..57f6913cc 100644 --- a/sys/src/cmd/nusb/kb/kb.c +++ b/sys/src/cmd/nusb/kb/kb.c @@ -227,7 +227,7 @@ ptrwork(void* a) static char maptab[] = {0x0, 0x1, 0x4, 0x5, 0x2, 0x3, 0x6, 0x7}; int x, y, b, c, ptrfd; int mfd, nerrs; - char buf[32]; + char buf[64]; char mbuf[80]; KDev* f = a; int hipri; |
