~ruther/qmk_firmware

92543a7cb56acab8f35670aa13b284e376ca199c — David H. Bronke 4 years ago 944cf64
fix(feature_ps2_mouse): fix Scroll Button example (#11669)

Corrected macro in Scroll Button example so it compiles.
1 files changed, 1 insertions(+), 1 deletions(-)

M docs/feature_ps2_mouse.md
M docs/feature_ps2_mouse.md => docs/feature_ps2_mouse.md +1 -1
@@ 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: