aboutsummaryrefslogtreecommitdiff
path: root/c/debug.h
diff options
context:
space:
mode:
Diffstat (limited to 'c/debug.h')
-rw-r--r--c/debug.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/c/debug.h b/c/debug.h
index d539573..83ff289 100644
--- a/c/debug.h
+++ b/c/debug.h
@@ -3,7 +3,7 @@
struct Benchmark
{
- Benchmark(const char* szName, int iId, int iAvgMax);
+ Benchmark(const char* name, int id, int avgmax);
~Benchmark();
void Disable();
long long ticks;
@@ -13,6 +13,6 @@ struct Benchmark
const char* name;
};
-const char* SzFromUmsg(unsigned uMsg);
+const char* MsgName(unsigned uMsg);
#endif