diff options
author | JAROWMR <jarorutjes07@gmail.com> | 2024-12-11 21:32:05 +0100 |
---|---|---|
committer | JAROWMR <jarorutjes07@gmail.com> | 2024-12-11 21:32:05 +0100 |
commit | a4c65ca6a69987349f703e51beed47a219d3d92d (patch) | |
tree | 9d8ca1e5963f4be21896e8df6218b48117b17cbd /src/crepe/system/AISystem.cpp | |
parent | 436b0db58c7533b286ecd3ec3d3c71311e71cf9c (diff) |
timing fix
Diffstat (limited to 'src/crepe/system/AISystem.cpp')
-rw-r--r-- | src/crepe/system/AISystem.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/crepe/system/AISystem.cpp b/src/crepe/system/AISystem.cpp index 1bbac69..a20e28c 100644 --- a/src/crepe/system/AISystem.cpp +++ b/src/crepe/system/AISystem.cpp @@ -43,7 +43,8 @@ void AISystem::update() { // Calculate the acceleration (using the above calculated force) vec2 acceleration = force / rigidbody.data.mass; // Finally, update Rigidbody's velocity - rigidbody.data.linear_velocity += acceleration * duration_cast<seconds>(dt).count(); + rigidbody.data.linear_velocity += acceleration * duration<float>(dt).count(); + } } |