mirror of
https://github.com/hrydgard/ppsspp.git
synced 2024-11-23 21:39:52 +00:00
19 lines
225 B
C
19 lines
225 B
C
#pragma once
|
|
|
|
// Statistics collection. Not very developed.
|
|
|
|
#define STATS_ENABLE
|
|
|
|
#ifdef STATS_ENABLE
|
|
|
|
void IncrementStat(const char *name);
|
|
|
|
#define INCSTAT(name) IncrementStat(name);
|
|
|
|
#else
|
|
|
|
#define INCSTAT(name)
|
|
|
|
#endif
|
|
|