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