input: add enumeration threads for each hid_pad_handler

There was a roughly 60 ms lag for each hid handler every 2 seconds. (sucks if you use all 3 hid handlers)
This commit is contained in:
Megamouse 2022-01-27 23:57:39 +01:00
parent 8efc29972d
commit a4c4548c3a
3 changed files with 50 additions and 14 deletions

View file

@ -12,7 +12,7 @@ private:
steady_clock::time_point m_end;
public:
Timer() : m_stopped(false)
Timer() : m_stopped(false), m_start(steady_clock::now())
{
}