diff options
Diffstat (limited to 'source/frontend/StarQuestTracker.cpp')
-rw-r--r-- | source/frontend/StarQuestTracker.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/source/frontend/StarQuestTracker.cpp b/source/frontend/StarQuestTracker.cpp index cb603b4..747852a 100644 --- a/source/frontend/StarQuestTracker.cpp +++ b/source/frontend/StarQuestTracker.cpp @@ -71,7 +71,7 @@ bool QuestTrackerPane::sendEvent(InputEvent const& event) { return false; } -void QuestTrackerPane::update() { +void QuestTrackerPane::update(float dt) { if (m_currentQuest) { if (auto objectiveList = m_currentQuest->objectiveList()) { if (objectiveList->size() == 0) { @@ -172,7 +172,7 @@ void QuestTrackerPane::update() { } } - Pane::update(); + Pane::update(dt); } void QuestTrackerPane::setQuest(QuestPtr const& quest) { |