Input: rename misleading ThreadProc to process

This commit is contained in:
Megamouse 2022-10-21 22:48:38 +02:00
parent e499c3c6e3
commit a16d18d83c
8 changed files with 10 additions and 10 deletions

View file

@ -278,7 +278,7 @@ void pad_thread::operator()()
continue;
}
handler->ThreadProc();
handler->process();
thread_ctrl::wait_for(g_cfg.io.pad_sleep);
}
@ -325,7 +325,7 @@ void pad_thread::operator()()
{
for (auto& handler : handlers)
{
handler.second->ThreadProc();
handler.second->process();
connected_devices += handler.second->connected_devices;
}
}