mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2024-11-15 05:47:56 -07:00
d802d39281
and s/\bNULL\b/nullptr/g for *.cpp/h/mm files not compiled on my machine
10 lines
200 B
C++
10 lines
200 B
C++
#include "VideoCommon/PerfQueryBase.h"
|
|
#include "VideoCommon/VideoConfig.h"
|
|
|
|
PerfQueryBase* g_perf_query = nullptr;
|
|
|
|
bool PerfQueryBase::ShouldEmulate()
|
|
{
|
|
return g_ActiveConfig.bPerfQueriesEnable;
|
|
}
|