diff options
-rw-r--r-- | Changelog.txt | 2 | ||||
-rw-r--r-- | src/map/intif.c | 2 |
2 files changed, 3 insertions, 1 deletions
diff --git a/Changelog.txt b/Changelog.txt index 11b23cc7f..fc0522f01 100644 --- a/Changelog.txt +++ b/Changelog.txt @@ -1,6 +1,8 @@ Date Added
11/13
+ * Removed compile warnings in intif.c. [Valaris]
* Fixed chrif_changesex and @changesex, now uses packet 0x3000. [MC Cameri]
+
11/12
* added folder: /save-tmpl, removed folder /save
* battle_athena.conf: Updated Packet Version Flags.
diff --git a/src/map/intif.c b/src/map/intif.c index 67521599b..3c130623c 100644 --- a/src/map/intif.c +++ b/src/map/intif.c @@ -617,7 +617,7 @@ int intif_displaymessage(int account_id, char* mes) int intif_parse_WisMessage(int fd) { // rewritten by [Yor]
struct map_session_data* sd;
int id=RFIFOL(fd,4);
- int i,j=0;
+ int i=0; //,j=0;
// if(battle_config.etc_log)
// printf("intif_parse_wismessage: %d %s %s %s\n",id,RFIFOP(fd,6),RFIFOP(fd,30),RFIFOP(fd,54) );
|