diff options
author | David H. Bronke <whitelynx@users.noreply.github.com> | 2021-01-24 09:51:25 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-01-24 14:51:25 +0000 |
commit | 92543a7cb56acab8f35670aa13b284e376ca199c (patch) | |
tree | b8288ecee57cd49f8a4623ef24d311dd5cbb012a /docs | |
parent | 944cf6476e1a8ddfab7c08dbe4cc1fee3ea4beb7 (diff) | |
download | qmk_firmware-92543a7cb56acab8f35670aa13b284e376ca199c.tar.gz qmk_firmware-92543a7cb56acab8f35670aa13b284e376ca199c.zip |
fix(feature_ps2_mouse): fix Scroll Button example (#11669)
Corrected macro in Scroll Button example so it compiles.
Diffstat (limited to 'docs')
-rw-r--r-- | docs/feature_ps2_mouse.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/feature_ps2_mouse.md b/docs/feature_ps2_mouse.md index e54981085..8e84e22d8 100644 --- a/docs/feature_ps2_mouse.md +++ b/docs/feature_ps2_mouse.md | |||
@@ -206,7 +206,7 @@ It's possible to enable a "scroll button/s" that when pressed will cause the mou | |||
206 | To enable the feature, you must set a scroll button mask as follows: | 206 | To enable the feature, you must set a scroll button mask as follows: |
207 | 207 | ||
208 | ```c | 208 | ```c |
209 | #define PS2_MOUSE_SCROLL_BTN_MASK (1<<PS2_MOUSE_BUTTON_MIDDLE) /* Default */ | 209 | #define PS2_MOUSE_SCROLL_BTN_MASK (1<<PS2_MOUSE_BTN_MIDDLE) /* Default */ |
210 | ``` | 210 | ``` |
211 | 211 | ||
212 | To disable the scroll button feature: | 212 | To disable the scroll button feature: |