summaryrefslogtreecommitdiffstats
path: root/src/logic/qlogiccomponent.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/logic/qlogiccomponent.cpp')
-rw-r--r--src/logic/qlogiccomponent.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/logic/qlogiccomponent.cpp b/src/logic/qlogiccomponent.cpp
index 2b99f0e14..878bc24d7 100644
--- a/src/logic/qlogiccomponent.cpp
+++ b/src/logic/qlogiccomponent.cpp
@@ -99,11 +99,11 @@ QLogicComponent::~QLogicComponent()
This virtual function will be called in a synchronous manner once each frame by
the Logic aspect.
*/
-void QLogicComponent::onFrameUpdate()
+void QLogicComponent::onFrameUpdate(float dt)
{
// Emit signal so that QML instances get the onFrameUpdate() signal
// handler called
- emit frameUpdate();
+ emit frameUpdate(dt);
}
} // namespace Qt3DLogic