Skip to content
Snippets Groups Projects
Unverified Commit 7b1f4d43 authored by Felix's avatar Felix Committed by GitHub
Browse files

Solve issues with atomic copy (#867)

parent ecacb22d
Branches
Tags
No related merge requests found
...@@ -109,7 +109,7 @@ class ScreenInteractive : public Screen { ...@@ -109,7 +109,7 @@ class ScreenInteractive : public Screen {
std::string set_cursor_position; std::string set_cursor_position;
std::string reset_cursor_position; std::string reset_cursor_position;
std::atomic<bool> quit_ = false; std::atomic<bool> quit_{false};
std::thread event_listener_; std::thread event_listener_;
std::thread animation_listener_; std::thread animation_listener_;
bool animation_requested_ = false; bool animation_requested_ = false;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment