From 768c25a99b2f4ec07993eb15a0f05a5e22b5c695 Mon Sep 17 00:00:00 2001 From: Chase Douglas Date: Mon, 24 Jan 2011 11:49:05 -0500 Subject: Add support for masked valuators With the X server now supporting masked valuators for XI2, enable support in X evdev. Signed-off-by: Chase Douglas Signed-off-by: Peter Hutterer --- src/emuWheel.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'src/emuWheel.c') diff --git a/src/emuWheel.c b/src/emuWheel.c index 81ef2a3..715f8d1 100644 --- a/src/emuWheel.c +++ b/src/emuWheel.c @@ -118,8 +118,9 @@ EvdevWheelEmuFilterMotion(InputInfoPtr pInfo, struct input_event *pEv) /* We don't want to intercept real mouse wheel events */ if(pEv->type == EV_ABS) { - oldValue = pEvdev->vals[pEvdev->axis_map[pEv->code]]; - pEvdev->vals[pEvdev->axis_map[pEv->code]] = value; + int axis = pEvdev->axis_map[pEv->code]; + oldValue = valuator_mask_get(pEvdev->vals, axis); + valuator_mask_set(pEvdev->vals, axis, value); value -= oldValue; /* make value into a differential measurement */ } -- cgit v1.2.3