1
0
Fork 0

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

This commit is contained in:
Drashna Jael're 2020-11-02 16:17:05 -08:00 committed by GitHub
parent e680af98d2
commit 38162af5a7
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
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);
}
}