diff options
Diffstat (limited to 'source/frontend/StarContainerInterface.cpp')
-rw-r--r-- | source/frontend/StarContainerInterface.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/source/frontend/StarContainerInterface.cpp b/source/frontend/StarContainerInterface.cpp index 5a69fda..6540dfb 100644 --- a/source/frontend/StarContainerInterface.cpp +++ b/source/frontend/StarContainerInterface.cpp @@ -258,11 +258,11 @@ void ContainerPane::burn() { m_containerInteractor->burnContainer(); } -void ContainerPane::update() { - Pane::update(); +void ContainerPane::update(float dt) { + Pane::update(dt); if (m_script) - m_script->update(m_script->updateDt()); + m_script->update(m_script->updateDt(dt)); m_itemBag->clearItems(); |