diff options
Diffstat (limited to 'src/common/timer.h')
-rw-r--r-- | src/common/timer.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/common/timer.h b/src/common/timer.h index 243b12e7d..4b683d966 100644 --- a/src/common/timer.h +++ b/src/common/timer.h @@ -41,7 +41,9 @@ unsigned int gettick(void); int add_timer(unsigned int,TimerFunc f,int,int); int add_timer_interval(unsigned int tick, TimerFunc func, int id, int data, int interval); -int delete_timer(int,TimerFunc f); +//int delete_timer(int,TimerFunc f); +int delete_timer_sub(int,TimerFunc f, const char* file, int line); +#define delete_timer(id, f) delete_timer_sub(id, f, __FILE__, __LINE__) int addtick_timer(int tid,unsigned int tick); int settick_timer(int tid,unsigned int tick); |