summaryrefslogtreecommitdiff
path: root/src/common/cbasetypes.h
diff options
context:
space:
mode:
authorskotlex <skotlex@54d463be-8e91-2dee-dedb-b68131a5f0ec>2007-03-11 16:11:20 +0000
committerskotlex <skotlex@54d463be-8e91-2dee-dedb-b68131a5f0ec>2007-03-11 16:11:20 +0000
commit26789cc24022cf600543860c4a15dbe79aa0e1f8 (patch)
tree14ad7a134c8ef3957eb2ae6ed45e3352ae20d12c /src/common/cbasetypes.h
parentc467555b8cdf1599fe3e6eac76065e178a57d72f (diff)
downloadhercules-26789cc24022cf600543860c4a15dbe79aa0e1f8.tar.gz
hercules-26789cc24022cf600543860c4a15dbe79aa0e1f8.tar.bz2
hercules-26789cc24022cf600543860c4a15dbe79aa0e1f8.tar.xz
hercules-26789cc24022cf600543860c4a15dbe79aa0e1f8.zip
- cbasetypes now assumes that Mingwin does defines ssize_t
- Modified the guild master change ack packet to return the aid/cid of the new guild master instead of the index where it was, the previous method could cause problems in situations where the order of guild members would not match exactly between char/map servers. - Updated the Soul Linker's Rogue Spirit Stealth's speed bonus to +60%, according to forum infor from ragnagate. git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@9985 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'src/common/cbasetypes.h')
-rw-r--r--src/common/cbasetypes.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/common/cbasetypes.h b/src/common/cbasetypes.h
index 1eea1c465..eca0d056c 100644
--- a/src/common/cbasetypes.h
+++ b/src/common/cbasetypes.h
@@ -153,7 +153,8 @@ typedef unsigned long int ppuint32;
// integer with exact processor width (and best speed)
// size_t already defined in stdio.h
//////////////////////////////
-#ifdef WIN32 // does not have a signed size_t
+//
+#if defined(WIN32) && !defined(MINGW) // does not have a signed size_t
//////////////////////////////
#if defined(_WIN64) // naive 64bit windows platform
typedef __int64 ssize_t;