From b2d0e8a491f347d43b482808a744642fc975afab Mon Sep 17 00:00:00 2001 From: Joel Challis Date: Fri, 5 Feb 2021 13:27:24 +0000 Subject: Manually run formatting job (#11797) --- quantum/pointing_device.c | 11 ++--------- 1 file changed, 2 insertions(+), 9 deletions(-) (limited to 'quantum/pointing_device.c') diff --git a/quantum/pointing_device.c b/quantum/pointing_device.c index fbcc08e6dd..09d889f697 100644 --- a/quantum/pointing_device.c +++ b/quantum/pointing_device.c @@ -25,14 +25,7 @@ along with this program. If not, see . static report_mouse_t mouseReport = {}; -__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); -} - +__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); } __attribute__((weak)) void pointing_device_init(void) { // initialize device, if that needs to be done. @@ -50,7 +43,7 @@ __attribute__((weak)) void pointing_device_send(void) { mouseReport.y = 0; mouseReport.v = 0; mouseReport.h = 0; - old_report = mouseReport; + old_report = mouseReport; } __attribute__((weak)) void pointing_device_task(void) { -- cgit v1.2.3