mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2024-11-15 22:09:19 -07: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;
|
|
}
|