Merge pull request #6584 from lioncash/async-init
AsyncRequests: In-class initialize class members
This commit is contained in:
commit
80525cfd4e
|
@ -12,9 +12,7 @@
|
||||||
|
|
||||||
AsyncRequests AsyncRequests::s_singleton;
|
AsyncRequests AsyncRequests::s_singleton;
|
||||||
|
|
||||||
AsyncRequests::AsyncRequests() : m_enable(false), m_passthrough(true)
|
AsyncRequests::AsyncRequests() = default;
|
||||||
{
|
|
||||||
}
|
|
||||||
|
|
||||||
void AsyncRequests::PullEventsInternal()
|
void AsyncRequests::PullEventsInternal()
|
||||||
{
|
{
|
||||||
|
|
|
@ -90,9 +90,9 @@ private:
|
||||||
std::mutex m_mutex;
|
std::mutex m_mutex;
|
||||||
std::condition_variable m_cond;
|
std::condition_variable m_cond;
|
||||||
|
|
||||||
bool m_wake_me_up_again;
|
bool m_wake_me_up_again = false;
|
||||||
bool m_enable;
|
bool m_enable = false;
|
||||||
bool m_passthrough;
|
bool m_passthrough = true;
|
||||||
|
|
||||||
std::vector<EfbPokeData> m_merged_efb_pokes;
|
std::vector<EfbPokeData> m_merged_efb_pokes;
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in New Issue