diff options
author | Devaev Maxim <[email protected]> | 2020-11-20 19:54:40 +0300 |
---|---|---|
committer | Devaev Maxim <[email protected]> | 2020-11-20 19:54:40 +0300 |
commit | 7be5dc8c827a4c32740298f0df685859f0de9194 (patch) | |
tree | ef126f3ab261f28daa2b955d42d6e260c491450c /hid | |
parent | 3ffbc7554a33f40640aa06dad9bb3803d69757e7 (diff) |
fixed mouse output choosing
Diffstat (limited to 'hid')
-rw-r--r-- | hid/src/main.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/hid/src/main.cpp b/hid/src/main.cpp index cd676bdc..e97bc37c 100644 --- a/hid/src/main.cpp +++ b/hid/src/main.cpp @@ -153,7 +153,7 @@ static void _cmdSetKeyboard(const uint8_t *data) { // 1 bytes static void _cmdSetMouse(const uint8_t *data) { // 1 bytes # ifdef HID_DYNAMIC - _writeOutputs(PROTO::OUTPUTS::KEYBOARD::MASK, data[0], false); + _writeOutputs(PROTO::OUTPUTS::MOUSE::MASK, data[0], false); _reset_required = true; # endif } |