summaryrefslogtreecommitdiffhomepage
path: root/editor/update.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'editor/update.cpp')
-rw-r--r--editor/update.cpp3
1 files changed, 1 insertions, 2 deletions
diff --git a/editor/update.cpp b/editor/update.cpp
index 7b3198ee..b16821f8 100644
--- a/editor/update.cpp
+++ b/editor/update.cpp
@@ -6,7 +6,6 @@
#include "floormat/events.hpp"
#include "floormat/main.hpp"
#include "character.hpp"
-#include "chunk.inl"
namespace floormat {
@@ -192,7 +191,7 @@ void app::update_world(float dt)
for (auto i = size-1; i != (std::size_t)-1; i--)
{
auto& e = *es[i];
- c.with_scenery_update(e, [&] { return e.update(i, dt); });
+ e.update(i, dt);
}
}
}