From 6125b6bc5204a618e6fc8976600332a423bd0fc0 Mon Sep 17 00:00:00 2001 From: skotlex Date: Thu, 23 Nov 2006 15:33:51 +0000 Subject: - Made WFIFOHEAD() check for available buffer size remaining on the connection, and when there's not enough space, it will increase it. - Added define TURBO to the Makefile. It enables MouseJstr's socket access optimization which should speed up the code when accessing the write/read buffers repeatedly within a function. - Fixed the functions where the RFIFOHEAD/WFIFOHEAD functions were used incorrectly (prevents TURBO enabled compilations from finishing) git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@9297 54d463be-8e91-2dee-dedb-b68131a5f0ec --- src/char/int_pet.c | 2 ++ 1 file changed, 2 insertions(+) (limited to 'src/char/int_pet.c') diff --git a/src/char/int_pet.c b/src/char/int_pet.c index 6e1b8ad83..3ab48c8ae 100644 --- a/src/char/int_pet.c +++ b/src/char/int_pet.c @@ -222,6 +222,7 @@ int mapif_delete_pet_ack(int fd,int flag) } int mapif_rename_pet_ack(int fd, int account_id, int char_id, int flag, char *name){ + WFIFOHEAD(fd, NAME_LENGTH+12); WFIFOW(fd, 0) =0x3884; WFIFOL(fd, 2) =account_id; WFIFOL(fd, 6) =char_id; @@ -394,6 +395,7 @@ int mapif_parse_DeletePet(int fd) } int mapif_parse_RenamePet(int fd){ + RFIFOHEAD(fd); mapif_rename_pet(fd, RFIFOL(fd, 2), RFIFOL(fd, 6), RFIFOP(fd, 10)); return 0; } -- cgit v1.2.3-60-g2f50