mirror of
https://github.com/TorqueGameEngines/Torque3D.git
synced 2026-07-11 22:54:34 +00:00
Fixed OPCODE problems with x64.
This commit is contained in:
parent
5103ba22e2
commit
46ffb3455b
4 changed files with 18 additions and 18 deletions
|
|
@ -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
|
||||
{
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue