diff options
author | Peter Hutterer <peter.hutterer@who-t.net> | 2012-04-10 13:03:35 +1000 |
---|---|---|
committer | Peter Hutterer <peter.hutterer@who-t.net> | 2012-04-11 07:52:58 +1000 |
commit | 8e297cb586ab855dc7c018c6f3f2f42c08db0419 (patch) | |
tree | 3fd6e3b49d1dd880b2daec104f2d5eba3a4c556d /src | |
parent | 3f9794a8a0f019a4b153941c9ec1927c7797ce6f (diff) |
Replace hardcoded max number of touches with a define.
Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
Reviewed-by: Chase Douglas <chase.douglas@canonical.com>
Diffstat (limited to 'src')
-rw-r--r-- | src/synaptics.c | 2 | ||||
-rw-r--r-- | src/synapticsstr.h | 1 |
2 files changed, 2 insertions, 1 deletions
diff --git a/src/synaptics.c b/src/synaptics.c index 99b5085..918dc6f 100644 --- a/src/synaptics.c +++ b/src/synaptics.c @@ -1186,7 +1186,7 @@ DeviceInitTouch(DeviceIntPtr dev, Atom *axes_labels) if (priv->has_touch) { - priv->num_slots = priv->max_touches ? priv->max_touches : 10; + priv->num_slots = priv->max_touches ? priv->max_touches : SYNAPTICS_MAX_TOUCHES; priv->open_slots = malloc(priv->num_slots * sizeof(int)); if (!priv->open_slots) diff --git a/src/synapticsstr.h b/src/synapticsstr.h index 55aab3d..14ae362 100644 --- a/src/synapticsstr.h +++ b/src/synapticsstr.h @@ -49,6 +49,7 @@ * structs, typedefs, #defines, enums *****************************************************************************/ #define SYNAPTICS_MOVE_HISTORY 5 +#define SYNAPTICS_MAX_TOUCHES 10 typedef struct _SynapticsMoveHist { |