Fixed OPCODE problems with x64.

This commit is contained in:
LuisAntonRebollo 2014-10-04 11:20:43 +02:00
parent 5103ba22e2
commit 46ffb3455b
4 changed files with 18 additions and 18 deletions

View file

@ -36,7 +36,7 @@
inline_ udword GetNodeSize() const { return SIZEOFOBJECT; } \
\
volume mAABB; \
udword mData;
size_t mData;
//! Common interface for a node of a no-leaf tree
#define IMPLEMENT_NOLEAF_NODE(base_class, volume) \
@ -56,8 +56,8 @@
inline_ udword GetNodeSize() const { return SIZEOFOBJECT; } \
\
volume mAABB; \
udword mPosData; \
udword mNegData;
size_t mPosData; \
size_t mNegData;
class OPCODE_API AABBCollisionNode
{