From af31ae210a16c95272317b3f7ab0b0e7bebe11e2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?L=C3=A1szl=C3=B3=20Monda?= Date: Wed, 26 Sep 2018 16:34:01 +0200 Subject: [PATCH] Move the pointer not by 1 but by 5 pixels when testing the USB stack to make the pointer easier to see. --- right/src/usb_report_updater.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/right/src/usb_report_updater.c b/right/src/usb_report_updater.c index c16baad..c3d2b35 100644 --- a/right/src/usb_report_updater.c +++ b/right/src/usb_report_updater.c @@ -354,7 +354,7 @@ static void updateActiveUsbReports(void) isEvenMedia = !isEvenMedia; ActiveUsbMediaKeyboardReport->scancodes[mediaScancodeIndex++] = isEvenMedia ? MEDIA_VOLUME_DOWN : MEDIA_VOLUME_UP; } - MouseMoveState.xOut = isEven ? -1 : 1; + MouseMoveState.xOut = isEven ? -5 : 5; } }