Move the pointer not by 1 but by 5 pixels when testing the USB stack to make the pointer easier to see.

This commit is contained in:
László Monda
2018-09-26 16:34:01 +02:00
parent 44799995b9
commit af31ae210a

View File

@@ -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;
}
}