fix bug in serialization buffer allocation btAlignedAlloc(16,totalSize); should be btAlignedAlloc(totalSize, 16);

added cmake-autogenerated MSVC 2008 projectfiles in msvc/2008
This commit is contained in:
erwin.coumans
2010-01-27 22:24:07 +00:00
parent 725411a1f3
commit 7a445d70b7
19 changed files with 5573 additions and 1 deletions

View File

@@ -263,7 +263,7 @@ public:
m_dna(0),
m_dnaLength(0)
{
m_buffer = (unsigned char*)btAlignedAlloc(16,totalSize);
m_buffer = (unsigned char*)btAlignedAlloc(totalSize, 16);
const bool VOID_IS_8 = ((sizeof(void*)==8));