From 2f67509b53b27dd7f51ca2aadd19605aee613a61 Mon Sep 17 00:00:00 2001 From: Peter Hutterer Date: Wed, 16 Jan 2013 08:38:52 +1000 Subject: Split rel and abs axis mapping into two separate arrays This will enable a device to have relative scrolling axes in addition to absolute axes (required by the QEMU tablet). Signed-off-by: Peter Hutterer --- src/emuWheel.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/emuWheel.c') diff --git a/src/emuWheel.c b/src/emuWheel.c index db989c5..5774930 100644 --- a/src/emuWheel.c +++ b/src/emuWheel.c @@ -117,7 +117,7 @@ EvdevWheelEmuFilterMotion(InputInfoPtr pInfo, struct input_event *pEv) /* We don't want to intercept real mouse wheel events */ if(pEv->type == EV_ABS) { - int axis = pEvdev->axis_map[pEv->code]; + int axis = pEvdev->abs_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