Add relative mouse motion in event

This will allow the mouse processor to handle relative motion easily.
This commit is contained in:
Romain Vimont
2021-12-30 00:05:30 +01:00
parent e84cdf963c
commit a97151707e
2 changed files with 4 additions and 0 deletions

View File

@@ -653,6 +653,8 @@ input_manager_process_mouse_motion(struct input_manager *im,
.point = screen_convert_window_to_frame_coords(im->screen,
event->x, event->y),
},
.xrel = event->xrel,
.yrel = event->yrel,
.buttons_state =
sc_mouse_buttons_state_from_sdl(event->state,
im->forward_all_clicks),