diff options
author | Stanislaw Halik <sthalik@misaki.pl> | 2023-08-27 15:52:23 +0200 |
---|---|---|
committer | Stanislaw Halik <sthalik@misaki.pl> | 2023-08-27 17:57:30 +0200 |
commit | 364155032c228342e853c8f1661fea0c57f11c15 (patch) | |
tree | c65963cae277f67511f5b1fe07ecf8d4ddb69d56 /editor | |
parent | 481fc7e9e2a58abcd1299ccdebcb4b0527b47815 (diff) |
src: remove entity::update() 'bool' return value
Diffstat (limited to 'editor')
-rw-r--r-- | editor/update.cpp | 2 |
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); } } |