aboutsummaryrefslogtreecommitdiffstats
path: root/src/physics.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/physics.cpp')
-rw-r--r--src/physics.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/physics.cpp b/src/physics.cpp
index 1f70ecc..85b929c 100644
--- a/src/physics.cpp
+++ b/src/physics.cpp
@@ -41,10 +41,10 @@ void PhysicsSystem::update([[maybe_unused]]entityx::EntityManager& entities,
pos.x += (vel.x * dt/1000.0);
pos.y += (vel.y * dt/1000.0);
- // TODO make this intersect world instead of 0 y
+ // If the entity has physics
if (has_phys) {
- double fallPosition = currentWorld->getHeight(pos.x, pos.y, 0.0);
+ float fallPosition = currentWorld->getHeight(pos.x, pos.y, 0.0);
Physics *p = e.component<Physics>().get();
// TODO only make this occur when the entity has a hitbox