summaryrefslogtreecommitdiffhomepage
path: root/editor
diff options
context:
space:
mode:
Diffstat (limited to 'editor')
-rw-r--r--editor/update.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/editor/update.cpp b/editor/update.cpp
index a6f1aca5..ae64a2f3 100644
--- a/editor/update.cpp
+++ b/editor/update.cpp
@@ -225,7 +225,7 @@ void app::update_world(float dt)
const auto& es = c.entities();
const auto size = es.size();
for (auto i = size-1; i != (size_t)-1; i--)
- (void)es[i]->update(i, dt);
+ es[i]->update(i, dt);
}
}