diff options
Diffstat (limited to 'src/map/intif.c')
-rw-r--r-- | src/map/intif.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/map/intif.c b/src/map/intif.c index d53d6b8f2..1f7a0657e 100644 --- a/src/map/intif.c +++ b/src/map/intif.c @@ -129,7 +129,7 @@ int intif_rename(struct map_session_data *sd, int type, char *name) } // GMメッセージを送信 -int intif_GMmessage(char* mes,int len,int flag) +int intif_GMmessage(const char* mes,int len,int flag) { int lp = (flag&0x10) ? 8 : 4; @@ -152,7 +152,7 @@ int intif_GMmessage(char* mes,int len,int flag) return 0; } -int intif_announce(char* mes,int len, unsigned long color, int flag) +int intif_announce(const char* mes,int len, unsigned long color, int flag) { // Send to the local players if(color == 0xFE000000) // This is main chat message [LuzZza] |