functions.h
changeset 2091 97197b795fe6
parent 2078 94c05035e2ce
child 2125 3098398bf7ff
--- a/functions.h	Sun Jul 17 12:44:35 2005 +0000
+++ b/functions.h	Sun Jul 17 12:49:00 2005 +0000
@@ -126,6 +126,12 @@
 uint32 InteractiveRandom(void); /* Used for random sequences that are not the same on the other end of the multiplayer link */
 uint InteractiveRandomRange(uint max);
 
+
+// Used for profiling
+#define TIC() { extern uint32 rdtsc(void); uint32 _xxx_ = rdtsc();
+#define TOC(s) 	_xxx_ = rdtsc() - _xxx_; printf("%s: %d\n", s, _xxx_); }
+
+
 void SetDate(uint date);
 /* facedraw.c */
 void DrawPlayerFace(uint32 face, int color, int x, int y);