summaryrefslogtreecommitdiff
path: root/src/grail-inserter.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/grail-inserter.c')
-rw-r--r--src/grail-inserter.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/grail-inserter.c b/src/grail-inserter.c
index 4bf78d3..724052c 100644
--- a/src/grail-inserter.c
+++ b/src/grail-inserter.c
@@ -216,9 +216,10 @@ int gin_gid_begin_select(struct grail *ge, int type, int priority,
216 return s->id; 216 return s->id;
217} 217}
218 218
219int gin_gid_begin(struct grail *ge, int type, const struct touch_frame *frame) 219int gin_gid_begin(struct grail *ge, int type, int priority,
220 const struct touch_frame *frame)
220{ 221{
221 return gin_gid_begin_select(ge, type, 1, 222 return gin_gid_begin_select(ge, type, priority,
222 frame->touches, sizeof(frame->touches)); 223 frame->touches, sizeof(frame->touches));
223} 224}
224 225