Guest User

Untitled

a guest
May 12th, 2025
19
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.37 KB | None | 0 0
  1. report_mouse_t pointing_device_task_user(report_mouse_t mouse_report) {
  2.     if (mouse_warp_direction == 2) {
  3.         report_mouse_t current_report = pointing_device_get_report();
  4.         { current_report.y = -127; }
  5.         pointing_device_set_report(current_report);
  6.         pointing_device_send();
  7.         mouse_warp_direction = 0;
  8.     }
  9.  
  10.     return mouse_report;
  11. }
  12.  
Advertisement
Add Comment
Please, Sign In to add comment