| 423 | } |
| 424 | |
| 425 | static void set_mouse_motion_event(SDL_Event *event, int32_t x, int32_t y, int32_t xrel, int32_t yrel) |
| 426 | { |
| 427 | event->type = SDL_MOUSEMOTION; |
| 428 | event->motion.x = x; |
| 429 | event->motion.y = y; |
| 430 | event->motion.xrel = xrel; |
| 431 | event->motion.yrel = yrel; |
| 432 | } |
| 433 | #endif |
no outgoing calls
no test coverage detected