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

@ -98,11 +98,11 @@ bool hid_pad_handler<Device>::Init()
}
template <class Device>
void hid_pad_handler<Device>::ThreadProc()
void hid_pad_handler<Device>::process()
{
update_devices();
PadHandlerBase::ThreadProc();
PadHandlerBase::process();
}
template <class Device>