Skip to content

Commit

Permalink
docs: fix code sample (qmk#16623)
Browse files Browse the repository at this point in the history
  • Loading branch information
Kriechi authored and tacahiroy committed Mar 18, 2022
1 parent f1d2a10 commit 522c8cd
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion docs/feature_pointing_device.md
Original file line number Diff line number Diff line change
Expand Up @@ -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;
}
Expand Down

0 comments on commit 522c8cd

Please sign in to comment.