mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-31 10:09:36 -06:00
PerfQueryBase: Move common implementation variables into base class
This commit is contained in:
@ -22,7 +22,6 @@ PerfQueryBase* GetPerfQuery()
|
||||
|
||||
PerfQuery::PerfQuery()
|
||||
: m_query_read_pos()
|
||||
, m_query_count()
|
||||
{
|
||||
ResetQuery();
|
||||
}
|
||||
|
@ -37,10 +37,6 @@ protected:
|
||||
std::array<ActiveQuery, PERF_QUERY_BUFFER_SIZE> m_query_buffer;
|
||||
u32 m_query_read_pos;
|
||||
|
||||
// TODO: sloppy
|
||||
volatile u32 m_query_count;
|
||||
volatile u32 m_results[PQG_NUM_MEMBERS];
|
||||
|
||||
private:
|
||||
// Implementation
|
||||
std::unique_ptr<PerfQuery> m_query;
|
||||
|
Reference in New Issue
Block a user