summaryrefslogtreecommitdiff
path: root/src/map/clif.c
diff options
context:
space:
mode:
authorskotlex <skotlex@54d463be-8e91-2dee-dedb-b68131a5f0ec>2007-03-09 00:10:06 +0000
committerskotlex <skotlex@54d463be-8e91-2dee-dedb-b68131a5f0ec>2007-03-09 00:10:06 +0000
commit6f96f2dea64de97bd5a16a146c8ce943b01563de (patch)
tree25a12c7facec28b21f18fefc8edff1115e24f7a0 /src/map/clif.c
parentea692a1f5c94f05619a7d0e9cb4ab4a9a1d24093 (diff)
downloadhercules-6f96f2dea64de97bd5a16a146c8ce943b01563de.tar.gz
hercules-6f96f2dea64de97bd5a16a146c8ce943b01563de.tar.bz2
hercules-6f96f2dea64de97bd5a16a146c8ce943b01563de.tar.xz
hercules-6f96f2dea64de97bd5a16a146c8ce943b01563de.zip
- Made conv_str return const char* since the script engine screws up if you mess with the position of the terminator on the received string.
- Because of this, many functions that handled the return of conv_str need to be changed, I haven't finished doing the conversion process because I must go already, if someone else can continue, please do so (I will resume work on this in ~5 hours git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@9978 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'src/map/clif.c')
-rw-r--r--src/map/clif.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/map/clif.c b/src/map/clif.c
index 32152dfc1..808733458 100644
--- a/src/map/clif.c
+++ b/src/map/clif.c
@@ -1820,7 +1820,7 @@ int clif_selllist(struct map_session_data *sd) {
*
*------------------------------------------
*/
-int clif_scriptmes(struct map_session_data *sd, int npcid, char *mes) {
+int clif_scriptmes(struct map_session_data *sd, int npcid, const char *mes) {
int fd = sd->fd;
int slen = strlen(mes) + 9;
WFIFOHEAD(fd, slen);
@@ -7348,7 +7348,7 @@ void clif_sitting(struct map_session_data *sd)
*
*------------------------------------------
*/
-int clif_disp_onlyself(struct map_session_data *sd, char *mes, int len)
+int clif_disp_onlyself(struct map_session_data *sd, const char *mes, int len)
{
int fd;
nullpo_retr(0, sd);
@@ -7492,7 +7492,7 @@ int clif_wisall(struct map_session_data *sd,int type,int flag)
* サウンドエフェクト
*------------------------------------------
*/
-void clif_soundeffect(struct map_session_data *sd,struct block_list *bl,char *name,int type)
+void clif_soundeffect(struct map_session_data *sd,struct block_list *bl,const char *name,int type)
{
int fd;
@@ -7511,7 +7511,7 @@ void clif_soundeffect(struct map_session_data *sd,struct block_list *bl,char *na
return;
}
-int clif_soundeffectall(struct block_list *bl, char *name, int type, int coverage)
+int clif_soundeffectall(struct block_list *bl, const char *name, int type, int coverage)
{
unsigned char buf[40];
memset(buf, 0, packet_len(0x1d3));