diff options
author | shennetsind <ind@henn.et> | 2013-07-05 01:07:59 -0300 |
---|---|---|
committer | shennetsind <ind@henn.et> | 2013-07-05 01:07:59 -0300 |
commit | a3711050a219e887b6637969bac66fb7d261d9cf (patch) | |
tree | f56eea60a1904dae8e43e0ff31ae72c7c8decc00 /src/map/skill.h | |
parent | 88da261c4cf6f984252adb46a1b780a9aeeb8ccc (diff) | |
download | hercules-a3711050a219e887b6637969bac66fb7d261d9cf.tar.gz hercules-a3711050a219e887b6637969bac66fb7d261d9cf.tar.bz2 hercules-a3711050a219e887b6637969bac66fb7d261d9cf.tar.xz hercules-a3711050a219e887b6637969bac66fb7d261d9cf.zip |
Minor compliance adjustments
Data provided by clang
Signed-off-by: shennetsind <ind@henn.et>
Diffstat (limited to 'src/map/skill.h')
-rw-r--r-- | src/map/skill.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/map/skill.h b/src/map/skill.h index a2eed585f..cff2fc0cf 100644 --- a/src/map/skill.h +++ b/src/map/skill.h @@ -1792,7 +1792,7 @@ struct skill_interface { const char* (*get_name) ( uint16 skill_id ); const char* (*get_desc) ( uint16 skill_id ); /* check */ - void (*chk) (int16* skill_id); + void (*chk) (uint16* skill_id); /* whether its CAST_GROUND, CAST_DAMAGE or CAST_NODAMAGE */ int (*get_casttype) (uint16 skill_id); int (*get_casttype2) (uint16 index); @@ -1828,7 +1828,7 @@ struct skill_interface { int (*check_condition_castend) (struct map_session_data *sd, uint16 skill_id, uint16 skill_lv); int (*consume_requirement) (struct map_session_data *sd, uint16 skill_id, uint16 skill_lv, short type); struct skill_condition (*get_requirement) (struct map_session_data *sd, uint16 skill_id, uint16 skill_lv); - int (*check_pc_partner) (struct map_session_data *sd, uint16 skill_id, short* skill_lv, int range, int cast_flag); + int (*check_pc_partner) (struct map_session_data *sd, uint16 skill_id, uint16* skill_lv, int range, int cast_flag); int (*unit_move) (struct block_list *bl,unsigned int tick,int flag); int (*unit_onleft) (uint16 skill_id, struct block_list *bl,unsigned int tick); int (*unit_onout) (struct skill_unit *src, struct block_list *bl, unsigned int tick); |