diff options
author | Haru <haru@dotalux.com> | 2015-09-14 14:44:52 +0200 |
---|---|---|
committer | Haru <haru@dotalux.com> | 2015-11-14 17:55:17 +0100 |
commit | 1c9e25d58901e9c5bcea6bcbe885bd9c3eb5c72b (patch) | |
tree | 4e3ea0572a7bdb324401b16d2d3fb52ed26fcb20 /src/map/script.h | |
parent | 71e868683b766633952e501a9cecf705bdc3e334 (diff) | |
download | hercules-1c9e25d58901e9c5bcea6bcbe885bd9c3eb5c72b.tar.gz hercules-1c9e25d58901e9c5bcea6bcbe885bd9c3eb5c72b.tar.bz2 hercules-1c9e25d58901e9c5bcea6bcbe885bd9c3eb5c72b.tar.xz hercules-1c9e25d58901e9c5bcea6bcbe885bd9c3eb5c72b.zip |
Changed script->hq and script->hqi into VECTOR type
Signed-off-by: Haru <haru@dotalux.com>
Diffstat (limited to 'src/map/script.h')
-rw-r--r-- | src/map/script.h | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/src/map/script.h b/src/map/script.h index ff660dec8..d3c64f401 100644 --- a/src/map/script.h +++ b/src/map/script.h @@ -515,9 +515,8 @@ struct script_interface { struct eri *st_ers; struct eri *stack_ers; /* */ - struct hQueue *hq; - struct hQueueIterator *hqi; - int hqs, hqis; + VECTOR_DECL(struct hQueue) hq; + VECTOR_DECL(struct hQueueIterator) hqi; /* */ char **buildin; unsigned int buildin_count; |