fix 64-bit issue, can't cast void* to int.

This commit is contained in:
erwin.coumans
2008-09-16 06:17:33 +00:00
parent 2e4f634586
commit c9e5f2df05
2 changed files with 2 additions and 1 deletions

View File

@@ -188,6 +188,7 @@ struct btDbvtNode
union {
btDbvtNode* childs[2];
void* data;
int dataAsInt;
};
};