diff options
author | Zephaniah E. Hull <warp@aehallh.com> | 2006-04-14 07:01:37 +0000 |
---|---|---|
committer | Zephaniah E. Hull <warp@aehallh.com> | 2006-04-14 07:01:37 +0000 |
commit | cffc51e04aba0090dfb663d2927117318b5ea00c (patch) | |
tree | 59f0279f214a77e551bd18d28000c911e56d034c /src/evdev_btn.c | |
parent | Remove a debugging message. (diff) | |
download | xf86-input-evdev-cffc51e04aba0090dfb663d2927117318b5ea00c.tar.gz xf86-input-evdev-cffc51e04aba0090dfb663d2927117318b5ea00c.tar.bz2 xf86-input-evdev-cffc51e04aba0090dfb663d2927117318b5ea00c.zip |
evdevAbsRec: Remove the scale bool, rename scale_x and scale_y to scale[2].
evdevAxesRec: Make btnMap an int array instead of a Card8 array.
Make abs support and non-core stuff actually work.
Relative emulation for abs mode is still a bit broken, but that's far less
critical.
How many buttons we've registered is configuration information, not an
error message.
Diffstat (limited to 'src/evdev_btn.c')
-rw-r--r-- | src/evdev_btn.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/evdev_btn.c b/src/evdev_btn.c index b9cd60d..4c25245 100644 --- a/src/evdev_btn.c +++ b/src/evdev_btn.c @@ -87,7 +87,7 @@ EvdevBtnInit (DeviceIntPtr device) for (i = 0; i <= pEvdev->state.btn->buttons; i++) map[i] = i; - xf86Msg(X_ERROR, "%s (%d): Registering %d buttons.\n", __FILE__, __LINE__, + xf86Msg(X_CONFIG, "%s (%d): Registering %d buttons.\n", __FILE__, __LINE__, pEvdev->state.btn->buttons); if (!InitButtonClassDeviceStruct (device, pEvdev->state.btn->buttons, map)) { pEvdev->state.btn->buttons = 0; |