Skip to content

Commit

Permalink
fix(feature_ps2_mouse): fix Scroll Button example (qmk#11669)
Browse files Browse the repository at this point in the history
Corrected macro in Scroll Button example so it compiles.
  • Loading branch information
whitelynx authored Jan 24, 2021
1 parent 93575f9 commit 46e2812
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/feature_ps2_mouse.md
Original file line number Diff line number Diff line change
Expand Up @@ -206,7 +206,7 @@ It's possible to enable a "scroll button/s" that when pressed will cause the mou
To enable the feature, you must set a scroll button mask as follows:
```c
#define PS2_MOUSE_SCROLL_BTN_MASK (1<<PS2_MOUSE_BUTTON_MIDDLE) /* Default */
#define PS2_MOUSE_SCROLL_BTN_MASK (1<<PS2_MOUSE_BTN_MIDDLE) /* Default */
```

To disable the scroll button feature:
Expand Down

0 comments on commit 46e2812

Please sign in to comment.