summaryrefslogtreecommitdiff
path: root/src/map/intif.c
diff options
context:
space:
mode:
authorai4rei <ai4rei@54d463be-8e91-2dee-dedb-b68131a5f0ec>2010-12-02 14:17:07 +0000
committerai4rei <ai4rei@54d463be-8e91-2dee-dedb-b68131a5f0ec>2010-12-02 14:17:07 +0000
commiteada7b359cb6f7aca97a076f4f91da532e0074b0 (patch)
tree85df121432d018d68d7f23e0a435ee92c4a073e7 /src/map/intif.c
parent3769410529065beeeb2bc6ed0fba631f9c64a2e5 (diff)
downloadhercules-eada7b359cb6f7aca97a076f4f91da532e0074b0.tar.gz
hercules-eada7b359cb6f7aca97a076f4f91da532e0074b0.tar.bz2
hercules-eada7b359cb6f7aca97a076f4f91da532e0074b0.tar.xz
hercules-eada7b359cb6f7aca97a076f4f91da532e0074b0.zip
* Added defines for guild notice sizes (MAX_GUILDMES1 and MAX_GUILDMES2).
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@14544 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'src/map/intif.c')
-rw-r--r--src/map/intif.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/map/intif.c b/src/map/intif.c
index ba5230bab..15d948c59 100644
--- a/src/map/intif.c
+++ b/src/map/intif.c
@@ -698,8 +698,8 @@ int intif_guild_notice(int guild_id,const char *mes1,const char *mes2)
WFIFOHEAD(inter_fd,186);
WFIFOW(inter_fd,0)=0x303e;
WFIFOL(inter_fd,2)=guild_id;
- memcpy(WFIFOP(inter_fd,6),mes1,60);
- memcpy(WFIFOP(inter_fd,66),mes2,120);
+ memcpy(WFIFOP(inter_fd,6),mes1,MAX_GUILDMES1);
+ memcpy(WFIFOP(inter_fd,66),mes2,MAX_GUILDMES2);
WFIFOSET(inter_fd,186);
return 0;
}