summaryrefslogtreecommitdiffstats
path: root/quantum/pointing_device.h
diff options
context:
space:
mode:
authorZiTe <honmonoh@gmail.com>2022-03-08 12:16:35 +0800
committerGitHub <noreply@github.com>2022-03-07 20:16:35 -0800
commit0880850b158ca5da4eae28c43849909c01350f0f (patch)
tree2d23b7a1da6d34854d5cb99eb4cf49c062925835 /quantum/pointing_device.h
parent8f70adc0b6e8c1e7f08f9fd2496385c4053282ee (diff)
[Bug] Rename has_mouse_report_changed parameters (#16417)
Fixes compilation issues when bluetooth is enabled, due to issues with cpp used by bluetooth code. Co-authored-by: Ryan <fauxpark@gmail.com> Co-authored-by: Drashna Jaelre <drashna@live.com>
Diffstat (limited to 'quantum/pointing_device.h')
-rw-r--r--quantum/pointing_device.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/quantum/pointing_device.h b/quantum/pointing_device.h
index 5f3845227a..a6bdbf120c 100644
--- a/quantum/pointing_device.h
+++ b/quantum/pointing_device.h
@@ -79,8 +79,8 @@ void pointing_device_init(void);
void pointing_device_task(void);
void pointing_device_send(void);
report_mouse_t pointing_device_get_report(void);
-void pointing_device_set_report(report_mouse_t newMouseReport);
-bool has_mouse_report_changed(report_mouse_t new, report_mouse_t old);
+void pointing_device_set_report(report_mouse_t mouse_report);
+bool has_mouse_report_changed(report_mouse_t new_report, report_mouse_t old_report);
uint16_t pointing_device_get_cpi(void);
void pointing_device_set_cpi(uint16_t cpi);