1
0
Fork 0

Merge pull request #944 from priyadi/negmousefix

Allow negative values for mouse movements
This commit is contained in:
Jack Humbert 2016-12-12 00:46:59 -05:00 committed by GitHub
commit f2e5ca25db

View file

@ -86,7 +86,7 @@ struct queue_item {
uint16_t consumer; uint16_t consumer;
struct __attribute__((packed)) { struct __attribute__((packed)) {
uint8_t x, y, scroll, pan; int8_t x, y, scroll, pan;
} mousemove; } mousemove;
}; };
}; };