DolphinQt/TAS: Use non-default std::atomic struct constructor to fix build with libstdc++ 15.

This commit is contained in:
Jordan Woyak 2025-05-05 16:29:15 -05:00
parent d2db9d9590
commit 2f1d8272a8

View File

@ -38,6 +38,6 @@ private:
int value = 0;
};
std::atomic<State> m_ui_thread_state;
std::atomic<State> m_cpu_thread_state;
std::atomic<State> m_ui_thread_state = State{};
std::atomic<State> m_cpu_thread_state = State{};
};