Increase mouse polling rate to 5 ms to match PC

This commit is contained in:
Cameron Gutman 2018-11-17 13:18:35 -08:00
parent e6f4247ae8
commit 7f9c71805e

View File

@ -99,8 +99,8 @@ void* MoonlightInstance::InputThreadFunc(void* context) {
me->PollGamepads();
me->ReportMouseMovement();
// Poll every 10 ms
usleep(10 * 1000);
// Poll every 5 ms
usleep(5 * 1000);
}
return NULL;