Skip to content

Commit

Permalink
Added a missing underscore
Browse files Browse the repository at this point in the history
  • Loading branch information
skyjake committed Jun 6, 2003
1 parent a42bd95 commit 8befd1b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion doomsday/Include/m_profiler.h
Expand Up @@ -24,7 +24,7 @@ typedef struct profiler_s {
# define END_PROF_TIMERS() ,NUM_PROFS }; static profiler_t profiler_[NUM_PROFS];
# define BEGIN_PROF(x) (profiler_[x].startCount++, profiler_[x].startTime = Sys_GetRealTime())
# define END_PROF(x) (profiler_[x].totalTime += Sys_GetRealTime() - profiler_[x].startTime)
# define PRINT_PROF(x) Con_Message(#x ": %i ms (%i starts)\n", profiler[x].totalTime, profiler[x].startCount)
# define PRINT_PROF(x) Con_Message(#x ": %i ms (%i starts)\n", profiler_[x].totalTime, profiler_[x].startCount)
#else // Profiling is disabled.
# define END_PROF_TIMERS() ,NUM_PROFS };
# define BEGIN_PROF(x)
Expand Down

0 comments on commit 8befd1b

Please sign in to comment.