diff options
author | shennetsind <shennetsind@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2012-04-15 12:41:09 +0000 |
---|---|---|
committer | shennetsind <shennetsind@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2012-04-15 12:41:09 +0000 |
commit | 10657791075114dc5a8c6345339b82ba1460f6dd (patch) | |
tree | e8aef62301b7fd2127af8cd608baee5b0bb4f4fe /src/map | |
parent | 65df507547c6026b8d2028ee863248fcec1e2359 (diff) | |
download | hercules-10657791075114dc5a8c6345339b82ba1460f6dd.tar.gz hercules-10657791075114dc5a8c6345339b82ba1460f6dd.tar.bz2 hercules-10657791075114dc5a8c6345339b82ba1460f6dd.tar.xz hercules-10657791075114dc5a8c6345339b82ba1460f6dd.zip |
Follow up r15862 someone (<points at me>/facepalm) forgot that he had modified more than one file.
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@15863 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'src/map')
-rw-r--r-- | src/map/config/const.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/map/config/const.h b/src/map/config/const.h index dc85bda82..4e5a6fc5f 100644 --- a/src/map/config/const.h +++ b/src/map/config/const.h @@ -66,6 +66,12 @@ #define DEFTYPE_MAX CHAR_MAX
#endif
+
+#ifdef __64BIT__
+ #define __64BPRTSIZE(y) (long)y
+#else
+ #define __64BPRTSIZE(y) y
+#endif
/**
* End of File
**/
|