diff options
author | Jesusaves <cpntb1@ymail.com> | 2019-09-14 21:54:26 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2019-09-14 21:54:26 -0300 |
commit | fc236458d578be63c6fda0e59428f098a01e9a88 (patch) | |
tree | 4a9d1abc707e9df850c097a43ea239c791cc4944 | |
parent | 725fdb6b74c2506bd1f143c80db5a6557f949d72 (diff) | |
download | evol-hercules-fc236458d578be63c6fda0e59428f098a01e9a88.tar.gz evol-hercules-fc236458d578be63c6fda0e59428f098a01e9a88.tar.bz2 evol-hercules-fc236458d578be63c6fda0e59428f098a01e9a88.tar.xz evol-hercules-fc236458d578be63c6fda0e59428f098a01e9a88.zip |
__attribute__ ((unused))
-rw-r--r-- | src/emap/status.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/emap/status.c b/src/emap/status.c index 2e83d46..a76d296 100644 --- a/src/emap/status.c +++ b/src/emap/status.c @@ -261,7 +261,7 @@ void estatus_calc_pc_recover_hp_pre(struct map_session_data **sdPtr __attribute_ } // Reset any custom active bonus to default values -int estatus_calc_pc_preHook(struct map_session_data **sd, enum e_status_calc_opt *opt) +int estatus_calc_pc_preHook(struct map_session_data **sd, enum e_status_calc_opt *opt __attribute__ ((unused))) { struct s_homunculus_atk *hdatk; struct s_homunculus_def *hddef; @@ -283,7 +283,7 @@ int estatus_calc_pc_preHook(struct map_session_data **sd, enum e_status_calc_opt } // This effectively makes homunculus armor -int estatus_calc_homunculus_postHook(int retVal, struct homun_data *hd, enum e_status_calc_opt opt) +int estatus_calc_homunculus_postHook(int retVal, struct homun_data *hd, enum e_status_calc_opt opt __attribute__ ((unused))) { // Load SD so we can get the bonus data struct map_session_data *sd; |