summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPeter Hutterer <peter@cs.unisa.edu.au>2007-01-08 17:31:16 +1030
committerPeter Hutterer <whot@hyena.localdomain>2007-01-08 17:31:16 +1030
commita7ab7932938820a795bb6fb8e0444e0824433b99 (patch)
tree4fd47c01ef0859515c1f400fc7e37a4efdb12fa5
parent95e1a88050dde61e9b2407428042a43e47b46e18 (diff)
xfree86: fix XI86_SHARED_POINTER flag setting
-rw-r--r--Changelog6
-rw-r--r--hw/xfree86/common/xf86Xinput.c2
2 files changed, 7 insertions, 1 deletions
diff --git a/Changelog b/Changelog
index 431e008b9..17ee9c5e8 100644
--- a/Changelog
+++ b/Changelog
@@ -11,6 +11,12 @@ Files:
Xi/chdevcur.h
Xi/Makefile.am
+____________________________________________________________
+
+xfree86: fix XI86_SHARED_POINTER flag setting
+
+File:
+ hw/xfree86/common/xf86Xinput.c
== 20.12.06 ==
xfree86: Changing "IsMPDevice" to "SharedPointer" option. Devices will default
diff --git a/hw/xfree86/common/xf86Xinput.c b/hw/xfree86/common/xf86Xinput.c
index fd2a4513a..dc07b3f07 100644
--- a/hw/xfree86/common/xf86Xinput.c
+++ b/hw/xfree86/common/xf86Xinput.c
@@ -134,7 +134,7 @@ xf86ProcessCommonOptions(LocalDevicePtr local,
}
if (xf86SetBoolOption(list, "SharedPointer", 0)) {
- local->flags &= ~XI86_SHARED_POINTER;
+ local->flags |= XI86_SHARED_POINTER;
xf86Msg(X_CONFIG, "%s: is shared device\n", local->name);
}