Skip to content

Commit

Permalink
Work in progress
Browse files Browse the repository at this point in the history
  • Loading branch information
skhaz committed Nov 23, 2024
1 parent 9efe997 commit 2f833ae
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/overlay.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ void overlay::remove(std::shared_ptr<widget> widget) noexcept {
}

void overlay::update(float_t delta) noexcept {
for (auto &widget : _widgets) {
for (const auto &widget : _widgets) {
widget->update(delta);
}
}
Expand Down

0 comments on commit 2f833ae

Please sign in to comment.