Skip to content

Commit

Permalink
[display] fix bad QuitAll() bug that would presumably prevent it from…
Browse files Browse the repository at this point in the history
… working at all.
  • Loading branch information
stevenlovegrove committed Mar 19, 2022
1 parent 1993a69 commit 85a98c2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion components/pango_display/src/display.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -233,7 +233,7 @@ void Quit()

void QuitAll()
{
for(auto nc : contexts) {
for(auto& nc : contexts) {
nc.second->quit = true;
}
}
Expand Down

0 comments on commit 85a98c2

Please sign in to comment.