diff options
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
**/
|