diff options
Diffstat (limited to 'src/map/script.h')
-rw-r--r-- | src/map/script.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/map/script.h b/src/map/script.h index a1fbe31f0..8650cab9c 100644 --- a/src/map/script.h +++ b/src/map/script.h @@ -517,10 +517,10 @@ struct script_array { unsigned int *members;/* member list */ }; -struct script_string_buf { - char *ptr; - size_t pos,size; -}; +/** + * A script string buffer, used to hold strings used by the script engine. + */ +VECTOR_STRUCT_DECL(script_string_buf, char); struct string_translation { int string_id; |