diff options
author | Haru <haru@dotalux.com> | 2013-09-25 21:26:54 +0200 |
---|---|---|
committer | Haru <haru@dotalux.com> | 2013-09-25 22:15:53 +0200 |
commit | afcad494411995396b906f214d1c4ffcf485cc0a (patch) | |
tree | e70b21658276ddef885322b7c9b18935b6c0235e /src/map/status.h | |
parent | 13afb7e0bf35bacc9c90c7dffe34120ddd2fd099 (diff) | |
download | hercules-afcad494411995396b906f214d1c4ffcf485cc0a.tar.gz hercules-afcad494411995396b906f214d1c4ffcf485cc0a.tar.bz2 hercules-afcad494411995396b906f214d1c4ffcf485cc0a.tar.xz hercules-afcad494411995396b906f214d1c4ffcf485cc0a.zip |
Renamed local variables that would conflict with a rename of iStatus to status
Signed-off-by: Haru <haru@dotalux.com>
Diffstat (limited to 'src/map/status.h')
-rw-r--r-- | src/map/status.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/map/status.h b/src/map/status.h index 9d49ff3af..c6da44d83 100644 --- a/src/map/status.h +++ b/src/map/status.h @@ -1854,7 +1854,7 @@ struct status_interface { int (*calc_elemental_) (struct elemental_data *ed, bool first); void (*calc_misc) (struct block_list *bl, struct status_data *status, int level); - void (*calc_regen) (struct block_list *bl, struct status_data *status, struct regen_data *regen); + void (*calc_regen) (struct block_list *bl, struct status_data *st, struct regen_data *regen); void (*calc_regen_rate) (struct block_list *bl, struct regen_data *regen, struct status_change *sc); int (*check_skilluse) (struct block_list *src, struct block_list *target, uint16 skill_id, int flag); // [Skotlex] @@ -1869,7 +1869,7 @@ struct status_interface { unsigned short (*calc_batk) (struct block_list *, struct status_change *, int, bool); #ifdef RENEWAL - unsigned short (*base_matk) (const struct status_data* status, int level); + unsigned short (*base_matk) (const struct status_data *st, int level); int (*get_weapon_atk) (struct block_list *src, struct weapon_atk *watk, int flag); #endif int (*get_total_mdef) (struct block_list *src); |