mirror of
https://github.com/openstenoproject/qmk
synced 2024-11-09 18:19:08 +00:00
docs: fix code sample (#16623)
This commit is contained in:
parent
3f79708095
commit
86b123141b
1 changed files with 2 additions and 1 deletions
|
@ -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…
Reference in a new issue