mirror of
https://gitlab.freedesktop.org/libinput/libinput.git
synced 2026-02-03 20:30:27 +01:00
test: fix the hid4800 device's prox out serial number
The test device sent a serial of 0. That would end up creating a new tool in libinput which is wrong. Let's hope this was just an error in creating the test device, if the device really sends that sequence, we're in trouble. Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
This commit is contained in:
parent
1a1b6070c4
commit
b8d2fd162a
1 changed files with 1 additions and 1 deletions
|
|
@ -39,7 +39,7 @@ static struct input_event proximity_in[] = {
|
|||
static struct input_event proximity_out[] = {
|
||||
{ .type = EV_ABS, .code = ABS_X, .value = 0 },
|
||||
{ .type = EV_ABS, .code = ABS_Y, .value = 0 },
|
||||
{ .type = EV_MSC, .code = MSC_SERIAL, .value = 0 },
|
||||
{ .type = EV_MSC, .code = MSC_SERIAL, .value = 297797542 },
|
||||
{ .type = EV_KEY, .code = BTN_TOOL_PEN, .value = 0 },
|
||||
{ .type = EV_SYN, .code = SYN_REPORT, .value = 0 },
|
||||
{ .type = -1, .code = -1 },
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue