summaryrefslogtreecommitdiff
path: root/src/map/npc.h
diff options
context:
space:
mode:
authorHaru <haru@dotalux.com>2015-12-15 19:48:04 +0100
committerHaru <haru@dotalux.com>2015-12-15 20:21:28 +0100
commit7881ebb6cb8f90a3f586c1f7af1543a2c3e1b661 (patch)
treefcabc68e419d8b99fd704a2430410408749c1a6e /src/map/npc.h
parent6d6ee8c436aa37aaf0afa9e5873e5778234cef37 (diff)
downloadhercules-7881ebb6cb8f90a3f586c1f7af1543a2c3e1b661.tar.gz
hercules-7881ebb6cb8f90a3f586c1f7af1543a2c3e1b661.tar.bz2
hercules-7881ebb6cb8f90a3f586c1f7af1543a2c3e1b661.tar.xz
hercules-7881ebb6cb8f90a3f586c1f7af1543a2c3e1b661.zip
Added const qualifier to the w1~w4 arguments of npc_parse_warp
Signed-off-by: Haru <haru@dotalux.com>
Diffstat (limited to 'src/map/npc.h')
-rw-r--r--src/map/npc.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/map/npc.h b/src/map/npc.h
index 3d046008b..4899838f1 100644
--- a/src/map/npc.h
+++ b/src/map/npc.h
@@ -234,7 +234,7 @@ struct npc_interface {
bool (*viewisid) (const char *viewid);
struct npc_data *(*create_npc) (enum npc_subtype subtype, int m, int x, int y, uint8 dir, int16 class_);
struct npc_data* (*add_warp) (char *name, short from_mapid, short from_x, short from_y, short xs, short ys, unsigned short to_mapindex, short to_x, short to_y);
- const char* (*parse_warp) (char *w1, char *w2, char *w3, char *w4, const char *start, const char *buffer, const char *filepath, int *retval);
+ const char *(*parse_warp) (const char *w1, const char *w2, const char *w3, const char *w4, const char *start, const char *buffer, const char *filepath, int *retval);
const char* (*parse_shop) (char *w1, char *w2, char *w3, char *w4, const char *start, const char *buffer, const char *filepath, int *retval);
const char* (*parse_unknown_object) (char *w1, char *w2, char *w3, char *w4, const char *start, const char *buffer, const char *filepath, int *retval);
void (*convertlabel_db) (struct npc_label_list *label_list, const char *filepath);