diff options
| author | Joel Challis <git@zvecr.com> | 2021-02-05 13:27:24 +0000 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-02-05 13:27:24 +0000 |
| commit | b2d0e8a491f347d43b482808a744642fc975afab (patch) | |
| tree | 177e05eab66844bb029829df75611106cccb37cb /quantum/pointing_device.c | |
| parent | 18babeae49dc933f7a07e123241ae2a78a75f168 (diff) | |
| download | qmk_firmware-b2d0e8a491f347d43b482808a744642fc975afab.tar.gz qmk_firmware-b2d0e8a491f347d43b482808a744642fc975afab.zip | |
Manually run formatting job (#11797)
Diffstat (limited to 'quantum/pointing_device.c')
| -rw-r--r-- | quantum/pointing_device.c | 11 |
1 files changed, 2 insertions, 9 deletions
diff --git a/quantum/pointing_device.c b/quantum/pointing_device.c index fbcc08e6d..09d889f69 100644 --- a/quantum/pointing_device.c +++ b/quantum/pointing_device.c | |||
| @@ -25,14 +25,7 @@ along with this program. If not, see <http://www.gnu.org/licenses/>. | |||
| 25 | 25 | ||
| 26 | static report_mouse_t mouseReport = {}; | 26 | static report_mouse_t mouseReport = {}; |
| 27 | 27 | ||
| 28 | __attribute__((weak)) bool has_mouse_report_changed(report_mouse_t new, report_mouse_t old) { | 28 | __attribute__((weak)) bool has_mouse_report_changed(report_mouse_t new, report_mouse_t old) { return (new.buttons != old.buttons) || (new.x&& new.x != old.x) || (new.y&& new.y != old.y) || (new.h&& new.h != old.h) || (new.v&& new.v != old.v); } |
| 29 | return (new.buttons != old.buttons) || | ||
| 30 | (new.x && new.x != old.x) || | ||
| 31 | (new.y && new.y != old.y) || | ||
| 32 | (new.h && new.h != old.h) || | ||
| 33 | (new.v && new.v != old.v); | ||
| 34 | } | ||
| 35 | |||
| 36 | 29 | ||
| 37 | __attribute__((weak)) void pointing_device_init(void) { | 30 | __attribute__((weak)) void pointing_device_init(void) { |
| 38 | // initialize device, if that needs to be done. | 31 | // initialize device, if that needs to be done. |
| @@ -50,7 +43,7 @@ __attribute__((weak)) void pointing_device_send(void) { | |||
| 50 | mouseReport.y = 0; | 43 | mouseReport.y = 0; |
| 51 | mouseReport.v = 0; | 44 | mouseReport.v = 0; |
| 52 | mouseReport.h = 0; | 45 | mouseReport.h = 0; |
| 53 | old_report = mouseReport; | 46 | old_report = mouseReport; |
| 54 | } | 47 | } |
| 55 | 48 | ||
| 56 | __attribute__((weak)) void pointing_device_task(void) { | 49 | __attribute__((weak)) void pointing_device_task(void) { |
