diff options
author | Snipeye <Snipeye@gmail.com> | 2017-10-10 19:07:59 +0200 |
---|---|---|
committer | Jack Humbert <jack.humb@gmail.com> | 2017-10-10 19:07:59 +0200 |
commit | cfd118d158bc13cf65ed0bb05fd1995d4892ac2e (patch) | |
tree | 8c9f1be7283bd31c71d622a70dea7595eca7af56 /quantum | |
parent | 20031ab982db135a10e3d28c5440af622c7cc029 (diff) | |
download | qmk_firmware-cfd118d158bc13cf65ed0bb05fd1995d4892ac2e.tar.gz qmk_firmware-cfd118d158bc13cf65ed0bb05fd1995d4892ac2e.tar.xz |
Added Dichotemy Keyboard, updated docs for Pointing Device (#1817)
* Added Dichotemy Keyboard, updated docs for Pointing Device
* Updated readme
* Updated mouse report pointer in pointing_device.c
Diffstat (limited to 'quantum')
-rw-r--r-- | quantum/pointing_device.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/quantum/pointing_device.c b/quantum/pointing_device.c index 0aaab84cd..e60ae8d93 100644 --- a/quantum/pointing_device.c +++ b/quantum/pointing_device.c @@ -33,7 +33,7 @@ void pointing_device_init(void){ __attribute__ ((weak)) void pointing_device_send(void){ //If you need to do other things, like debugging, this is the place to do it. - host_mouse_send(mouseReport); + host_mouse_send(&mouseReport); //send it and 0 it out except for buttons, so those stay until they are explicity over-ridden using update_pointing_device mouseReport.x = 0; mouseReport.y = 0; |