Removed the controller update lock as it is no longer needed.

This commit is contained in:
skidau 2015-03-12 23:41:30 +11:00
parent 2c6eaf9c76
commit c76008b4b9
3 changed files with 0 additions and 9 deletions

View file

@ -134,8 +134,6 @@ void ControllerInterface::Shutdown()
//
void ControllerInterface::UpdateInput()
{
std::unique_lock<std::recursive_mutex> lk(update_lock, std::defer_lock);
for (ciface::Core::Device* d : m_devices)
d->UpdateInput();
}