summaryrefslogtreecommitdiff
path: root/src/map/script.h
diff options
context:
space:
mode:
authorHaru <haru@dotalux.com>2015-09-14 14:44:52 +0200
committerHaru <haru@dotalux.com>2015-11-14 17:55:17 +0100
commit1c9e25d58901e9c5bcea6bcbe885bd9c3eb5c72b (patch)
tree4e3ea0572a7bdb324401b16d2d3fb52ed26fcb20 /src/map/script.h
parent71e868683b766633952e501a9cecf705bdc3e334 (diff)
downloadhercules-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.h5
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;