mirror of
https://gitlab.freedesktop.org/wlroots/wlroots.git
synced 2024-11-22 07:02:28 +00:00
examples/touch: fix incorrect event type
This commit is contained in:
parent
7d9938c957
commit
689627f0c0
@ -93,7 +93,7 @@ static void output_frame_notify(struct wl_listener *listener, void *data) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
static void touch_down_notify(struct wl_listener *listener, void *data) {
|
static void touch_down_notify(struct wl_listener *listener, void *data) {
|
||||||
struct wlr_touch_motion_event *event = data;
|
struct wlr_touch_down_event *event = data;
|
||||||
struct touch_state *tstate = wl_container_of(listener, tstate, down);
|
struct touch_state *tstate = wl_container_of(listener, tstate, down);
|
||||||
struct sample_state *sample = tstate->sample;
|
struct sample_state *sample = tstate->sample;
|
||||||
struct touch_point *point = calloc(1, sizeof(struct touch_point));
|
struct touch_point *point = calloc(1, sizeof(struct touch_point));
|
||||||
|
Loading…
Reference in New Issue
Block a user