docs: fix code sample (#16623)

zvecr-patch-1
Thomas Kriechbaumer 3 years ago committed by GitHub
parent 3f79708095
commit 86b123141b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 3
      docs/feature_pointing_device.md

@ -325,7 +325,8 @@ report_mouse_t pointing_device_task_user(report_mouse_t mouse_report) {
if (set_scrolling) {
mouse_report.h = mouse_report.x;
mouse_report.v = mouse_report.y;
mouse_report.x = mouse_report.y = 0
mouse_report.x = 0;
mouse_report.y = 0;
}
return mouse_report;
}

Loading…
Cancel
Save