aboutsummaryrefslogtreecommitdiff
path: root/src/crepe/system/AISystem.cpp
diff options
context:
space:
mode:
authorJAROWMR <jarorutjes07@gmail.com>2024-12-12 18:21:38 +0100
committerJAROWMR <jarorutjes07@gmail.com>2024-12-12 18:21:38 +0100
commit15bb400deafa1ea4fea1ff11e835f103fa82090f (patch)
treeae9edbfb43b3cd8f882cbfadc5dddaeced62068a /src/crepe/system/AISystem.cpp
parent32ab9f586491ec513a170160f201acfb8df90f3d (diff)
change get fixed_dt to float
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 680dbb8..e9d8fa7 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().count();
+ float dt = loop_timer.get_scaled_fixed_delta_time();
// Loop through all AI components
for (AI & ai : ai_components) {