summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/wcmCommon.c2
-rw-r--r--src/wcmConfig.c2
-rw-r--r--src/wcmValidateDevice.c2
3 files changed, 3 insertions, 3 deletions
diff --git a/src/wcmCommon.c b/src/wcmCommon.c
index 48a042d..ef6fe92 100644
--- a/src/wcmCommon.c
+++ b/src/wcmCommon.c
@@ -106,7 +106,7 @@ static void wcmSetScreen(LocalDevicePtr local, int v0, int v1)
priv->screen_no = -1;
}
- if (!(local->flags & (XI86_ALWAYS_CORE | XI86_CORE_POINTER))) return;
+ if (!(local->flags & (XI86_ALWAYS_CORE ))) return;
if (priv->twinview != TV_NONE && priv->screen_no == -1 && (priv->flags & ABSOLUTE_FLAG))
{
diff --git a/src/wcmConfig.c b/src/wcmConfig.c
index 4494f7b..5120d78 100644
--- a/src/wcmConfig.c
+++ b/src/wcmConfig.c
@@ -411,7 +411,7 @@ static LocalDevicePtr wcmPreInit(InputDriverPtr drv, IDevPtr dev, int flags)
goto SetupProc_fail;
/* mark the device configured */
- local->flags |= XI86_POINTER_CAPABLE | XI86_CONFIGURED;
+ local->flags |= XI86_CONFIGURED;
if (need_hotplug)
{
diff --git a/src/wcmValidateDevice.c b/src/wcmValidateDevice.c
index c9f5c4c..e2eef30 100644
--- a/src/wcmValidateDevice.c
+++ b/src/wcmValidateDevice.c
@@ -346,7 +346,7 @@ int wcmParseOptions(LocalDevicePtr local)
}
/* Store original local Core flag so it can be changed later */
- if (local->flags & (XI86_ALWAYS_CORE | XI86_CORE_POINTER))
+ if (local->flags & (XI86_ALWAYS_CORE))
priv->flags |= COREEVENT_FLAG;
s = xf86SetStrOption(local->options, "Rotate", NULL);