From 3477b723715dcd2340140bf62fbff82272250a92 Mon Sep 17 00:00:00 2001 From: Henrik Hautakoski Date: Fri, 24 Jan 2020 13:52:30 +0100 Subject: [PATCH] source/Input/InputModule.cpp: should not call m_platform->update() in update(). --- source/Input/InputModule.cpp | 3 --- 1 file changed, 3 deletions(-) diff --git a/source/Input/InputModule.cpp b/source/Input/InputModule.cpp index 3f5f3ec..076d1c0 100644 --- a/source/Input/InputModule.cpp +++ b/source/Input/InputModule.cpp @@ -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); }