mirror of
https://github.com/izzy2lost/dolphin.git
synced 2026-06-19 01:16:48 -07:00
DolphinQt/TAS: Use non-default std::atomic struct constructor to fix build with libstdc++ 15.
This commit is contained in:
@@ -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{};
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user