1
0
Fork 0

source/Input/InputModule.cpp: should not call m_platform->update() in update().

This commit is contained in:
Henrik Hautakoski 2020-01-24 13:52:30 +01:00
parent 52fe72f31f
commit 3477b72371
No known key found for this signature in database
GPG key ID: 96765B12FEAC4745

View file

@ -66,11 +66,8 @@ void InputModule::update()
{
InputDeviceVec::iterator it;
m_platform->update();
// Update all devices.
for(it = m_devices.begin(); it != m_devices.end(); it++) {
(*it)->update(this);
}