From ba9d200a15f3f9ccdc9ba42b5555c6ac9374bf9b Mon Sep 17 00:00:00 2001 From: ultramage Date: Mon, 26 May 2008 12:16:53 +0000 Subject: Moved the options to disable specific compiler warnings from the generic 'AdditionalOptions' to the appropriate 'DisableSpecificWarnings' section. Corrected an ancient mistake in the grfio/zlib code (calling inflateEnd in case of an error during the Deflate process). git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@12726 54d463be-8e91-2dee-dedb-b68131a5f0ec --- src/common/grfio.c | 2 +- src/map/clif.c | 7 +++++++ src/map/map.h | 2 +- 3 files changed, 9 insertions(+), 2 deletions(-) (limited to 'src') diff --git a/src/common/grfio.c b/src/common/grfio.c index ed2b84e3f..fe94e0803 100644 --- a/src/common/grfio.c +++ b/src/common/grfio.c @@ -270,7 +270,7 @@ int encode_zip(unsigned char* dest, unsigned long* destLen, const unsigned char* err = deflate(&stream, Z_FINISH); if (err != Z_STREAM_END) { - inflateEnd(&stream); + deflateEnd(&stream); return err == Z_OK ? Z_BUF_ERROR : err; } *destLen = stream.total_out; diff --git a/src/map/clif.c b/src/map/clif.c index 663ef51ea..71742011d 100644 --- a/src/map/clif.c +++ b/src/map/clif.c @@ -2273,6 +2273,13 @@ int clif_updatestatus(struct map_session_data *sd,int type) } WFIFOSET(fd,len); + if( type == SP_SPEED ) + { + char buf[256]; + sprintf(buf, "Your walk speed is now %d", sd->battle_status.speed); + clif_displaymessage(fd, buf); + } + return 0; } diff --git a/src/map/map.h b/src/map/map.h index 954e211b9..03e96d831 100644 --- a/src/map/map.h +++ b/src/map/map.h @@ -151,7 +151,7 @@ enum { #define CHATROOM_TITLE_SIZE (36 + 1) #define CHATROOM_PASS_SIZE (8 + 1) //Max allowed chat text length -#define CHAT_SIZE_MAX 256 +#define CHAT_SIZE_MAX (255 + 1) #define DEFAULT_AUTOSAVE_INTERVAL 5*60*1000 -- cgit v1.2.3-70-g09d2