diff --git a/Source/Core/VideoCommon/AsyncRequests.cpp b/Source/Core/VideoCommon/AsyncRequests.cpp index f41354730d..cab79c8bc2 100644 --- a/Source/Core/VideoCommon/AsyncRequests.cpp +++ b/Source/Core/VideoCommon/AsyncRequests.cpp @@ -12,9 +12,7 @@ AsyncRequests AsyncRequests::s_singleton; -AsyncRequests::AsyncRequests() : m_enable(false), m_passthrough(true) -{ -} +AsyncRequests::AsyncRequests() = default; void AsyncRequests::PullEventsInternal() { diff --git a/Source/Core/VideoCommon/AsyncRequests.h b/Source/Core/VideoCommon/AsyncRequests.h index c898c86c62..4c22d388e3 100644 --- a/Source/Core/VideoCommon/AsyncRequests.h +++ b/Source/Core/VideoCommon/AsyncRequests.h @@ -90,9 +90,9 @@ private: std::mutex m_mutex; std::condition_variable m_cond; - bool m_wake_me_up_again; - bool m_enable; - bool m_passthrough; + bool m_wake_me_up_again = false; + bool m_enable = false; + bool m_passthrough = true; std::vector m_merged_efb_pokes; };