[Keyboard] Fixes for PloopyCo mouse and readmes (#10841)

This commit is contained in:
Drashna Jaelre
2020-11-02 16:17:05 -08:00
committed by GitHub
parent e680af98d2
commit 38162af5a7
4 changed files with 3 additions and 30 deletions

View File

@@ -140,7 +140,7 @@ __attribute__((weak)) void process_mouse(report_mouse_t* mouse_report) {
if (debug_mouse) dprintf("Cons] X: %d, Y: %d\n", data.dx, data.dy);
// dprintf("Elapsed:%u, X: %f Y: %\n", i, pgm_read_byte(firmware_data+i));
process_mouse_user(mouse_report, data.dx, data.dy);
process_mouse_user(mouse_report, data.dx, -data.dy);
}
}