mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-01-10 08:09:26 +01:00
10 lines
194 B
C++
10 lines
194 B
C++
#include "VideoCommon/PerfQueryBase.h"
|
|
#include "VideoCommon/VideoConfig.h"
|
|
|
|
PerfQueryBase* g_perf_query = 0;
|
|
|
|
bool PerfQueryBase::ShouldEmulate()
|
|
{
|
|
return g_ActiveConfig.bPerfQueriesEnable;
|
|
}
|