From 364155032c228342e853c8f1661fea0c57f11c15 Mon Sep 17 00:00:00 2001 From: Stanislaw Halik Date: Sun, 27 Aug 2023 15:52:23 +0200 Subject: src: remove entity::update() 'bool' return value --- editor/update.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'editor') 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); } } -- cgit v1.2.3