diff options
author | Thomas Weißschuh <thomas@t-8ch.de> | 2021-07-03 09:50:47 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-07-03 00:50:47 -0700 |
commit | b5c361542efa22aefa5e5868ceb678d4fb8b68b3 (patch) | |
tree | 5a6fe329786a47d7c6ef2da2a617cacd816b7862 /quantum/mousekey.c | |
parent | 3ab805fc67e95dfb23188bf63c7f5fbb2edcf038 (diff) | |
download | qmk_firmware-b5c361542efa22aefa5e5868ceb678d4fb8b68b3.tar.gz qmk_firmware-b5c361542efa22aefa5e5868ceb678d4fb8b68b3.zip |
mousekey: expose current report to users (#13069)
Diffstat (limited to 'quantum/mousekey.c')
-rw-r--r-- | quantum/mousekey.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/quantum/mousekey.c b/quantum/mousekey.c index 99bfd6b96..c2291fb39 100644 --- a/quantum/mousekey.c +++ b/quantum/mousekey.c | |||
@@ -486,3 +486,5 @@ static void mousekey_debug(void) { | |||
486 | print_dec(mousekey_accel); | 486 | print_dec(mousekey_accel); |
487 | print(")\n"); | 487 | print(")\n"); |
488 | } | 488 | } |
489 | |||
490 | report_mouse_t mousekey_get_report(void) { return mouse_report; } | ||