Fixup Pointing device functions (#20311)

This commit is contained in:
Drashna Jaelre
2023-04-01 11:01:46 -07:00
committed by GitHub
parent 9359504255
commit bf986579dd
7 changed files with 15 additions and 15 deletions

View File

@@ -146,7 +146,7 @@ void update_keycode_status(uint16_t keycode, bool last, bool current) {
void pointing_device_init(void) { thumbstick_init(); }
void pointing_device_task(void) {
bool pointing_device_task(void) {
report_mouse_t report = pointing_device_get_report();
if (!isLeftHand) {
@@ -191,5 +191,5 @@ void pointing_device_task(void) {
}
pointing_device_set_report(report);
pointing_device_send();
return pointing_device_send();
}