aboutsummaryrefslogtreecommitdiff
path: root/src/crepe/system/AISystem.cpp
diff options
context:
space:
mode:
authorJAROWMR <jarorutjes07@gmail.com>2024-12-12 18:37:27 +0100
committerJAROWMR <jarorutjes07@gmail.com>2024-12-12 18:37:27 +0100
commitab1423f48d82ba9b0619ec107639a80773edbfc2 (patch)
treefcf4af55aa56b2de19e87e5246888e1af9f4f527 /src/crepe/system/AISystem.cpp
parent15bb400deafa1ea4fea1ff11e835f103fa82090f (diff)
reverted
Diffstat (limited to 'src/crepe/system/AISystem.cpp')
-rw-r--r--src/crepe/system/AISystem.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/crepe/system/AISystem.cpp b/src/crepe/system/AISystem.cpp
index e9d8fa7..680dbb8 100644
--- a/src/crepe/system/AISystem.cpp
+++ b/src/crepe/system/AISystem.cpp
@@ -16,7 +16,7 @@ void AISystem::update() {
LoopTimerManager & loop_timer = mediator.loop_timer;
RefVector<AI> ai_components = mgr.get_components_by_type<AI>();
- float dt = loop_timer.get_scaled_fixed_delta_time();
+ float dt = loop_timer.get_scaled_fixed_delta_time().count();
// Loop through all AI components
for (AI & ai : ai_components) {