More portable std::atomic_bool initialization

This commit is contained in:
Jack Andersen 2016-12-24 21:24:19 -10:00
parent d7c5dff1f0
commit 0bf5499717
1 changed files with 1 additions and 1 deletions

View File

@ -50,7 +50,7 @@ public:
Frame
};
private:
std::atomic_bool m_lock = false;
std::atomic_bool m_lock = {false};
#if _WIN32
PROCESS_INFORMATION m_pinfo = {};
std::thread m_consoleThread;