diff options
author | Haru <haru@dotalux.com> | 2015-12-15 19:58:38 +0100 |
---|---|---|
committer | Haru <haru@dotalux.com> | 2015-12-15 20:21:28 +0100 |
commit | c3aeb496b7016ce85f55da938d1939fa330d1c60 (patch) | |
tree | cf8adf4b480b32d60257c59f4b4ca053385e95f5 /src/map/script.h | |
parent | 0c4b3b1c57a8e75f1b13456fb60de3a69e680f45 (diff) | |
download | hercules-c3aeb496b7016ce85f55da938d1939fa330d1c60.tar.gz hercules-c3aeb496b7016ce85f55da938d1939fa330d1c60.tar.bz2 hercules-c3aeb496b7016ce85f55da938d1939fa330d1c60.tar.xz hercules-c3aeb496b7016ce85f55da938d1939fa330d1c60.zip |
Added const qualifier to the w1~w4 arguments of npc_parse_script
Signed-off-by: Haru <haru@dotalux.com>
Diffstat (limited to 'src/map/script.h')
-rw-r--r-- | src/map/script.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/map/script.h b/src/map/script.h index b153cf81a..d4a3d8db2 100644 --- a/src/map/script.h +++ b/src/map/script.h @@ -596,7 +596,7 @@ struct script_interface { FILE *lang_export_fp; char *lang_export_file;/* for lang_export_fp */ /* set and unset on npc_parse_script */ - char *parser_current_npc_name; + const char *parser_current_npc_name; /* */ int buildin_mes_offset; int buildin_select_offset; |