Increase input thread polling frequency

This does not have a significant impact on cpu usage in my testing (~+0.5% cpu on a 4-core system) and should improve input latency by 4ms on average.
This commit is contained in:
Morilli 2024-06-26 23:22:08 +02:00
parent bf82d95e0d
commit b3a1d5eb13
1 changed files with 1 additions and 1 deletions

View File

@ -266,7 +266,7 @@ namespace BizHawk.Client.EmuHawk
} //lock(this)
//arbitrary selection of polling frequency:
Thread.Sleep(10);
Thread.Sleep(2);
}
}