mirror of
https://github.com/hrydgard/ppsspp.git
synced 2024-12-04 12:05:23 +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
|
|
|