diff options
author | ai4rei <ai4rei@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2011-04-21 15:58:13 +0000 |
---|---|---|
committer | ai4rei <ai4rei@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2011-04-21 15:58:13 +0000 |
commit | f41e10d3301d186f5075168c7d5503b588f7ba33 (patch) | |
tree | 260fe922f732755cb50d04930997da08d1b7e504 /src/map/status.h | |
parent | cb35df2c8b78db0abc5cb45bcad151ed8cffc0eb (diff) | |
download | hercules-f41e10d3301d186f5075168c7d5503b588f7ba33.tar.gz hercules-f41e10d3301d186f5075168c7d5503b588f7ba33.tar.bz2 hercules-f41e10d3301d186f5075168c7d5503b588f7ba33.tar.xz hercules-f41e10d3301d186f5075168c7d5503b588f7ba33.zip |
* Extended debugging code for bugreport:3504 (related r14599).
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@14801 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'src/map/status.h')
-rw-r--r-- | src/map/status.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/map/status.h b/src/map/status.h index 718fd2e88..45eaa5c8d 100644 --- a/src/map/status.h +++ b/src/map/status.h @@ -1276,7 +1276,8 @@ int status_get_sc_def(struct block_list *bl, enum sc_type type, int rate, int ti #define sc_start4(bl, type, rate, val1, val2, val3, val4, tick) status_change_start(bl,type,100*(rate),val1,val2,val3,val4,tick,0) int status_change_start(struct block_list* bl,enum sc_type type,int rate,int val1,int val2,int val3,int val4,int tick,int flag); -int status_change_end(struct block_list* bl, enum sc_type type, int tid); +int status_change_end_(struct block_list* bl, enum sc_type type, int tid, const char* file, int line); +#define status_change_end(bl,type,tid) status_change_end_(bl,type,tid,__FILE__,__LINE__) int kaahi_heal_timer(int tid, unsigned int tick, int id, intptr data); int status_change_timer(int tid, unsigned int tick, int id, intptr data); int status_change_timer_sub(struct block_list* bl, va_list ap); |