mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-01-11 16:49:12 +01:00
10 lines
176 B
C++
10 lines
176 B
C++
#include "PerfQueryBase.h"
|
|
#include "VideoConfig.h"
|
|
|
|
PerfQueryBase* g_perf_query = 0;
|
|
|
|
bool PerfQueryBase::ShouldEmulate() const
|
|
{
|
|
return g_ActiveConfig.bPerfQueriesEnable;
|
|
}
|