diff options
author | JAROWMR <jarorutjes07@gmail.com> | 2024-12-12 18:18:10 +0100 |
---|---|---|
committer | JAROWMR <jarorutjes07@gmail.com> | 2024-12-12 18:18:10 +0100 |
commit | 32ab9f586491ec513a170160f201acfb8df90f3d (patch) | |
tree | 13f55fbf4b0dc8c1cc2cfb73e066c6cfa522cfa7 /src/crepe/system/AISystem.cpp | |
parent | 64b60939637da53422948417da5f026888c3d9ae (diff) |
made better readable
Diffstat (limited to 'src/crepe/system/AISystem.cpp')
-rw-r--r-- | src/crepe/system/AISystem.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/crepe/system/AISystem.cpp b/src/crepe/system/AISystem.cpp index 77de123..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 = std::chrono::duration<float>(loop_timer.get_scaled_fixed_delta_time()).count(); + float dt = loop_timer.get_scaled_fixed_delta_time().count(); // Loop through all AI components for (AI & ai : ai_components) { |