From a8bf53b49489bd84665da32e61e694be0e610a86 Mon Sep 17 00:00:00 2001 From: Erwin Coumans Date: Thu, 4 May 2017 13:52:02 -0700 Subject: [PATCH] fix error, m_userConstraintUIDGenerator should be m_data->m_userConstraintUIDGenerator --- examples/SharedMemory/PhysicsServerCommandProcessor.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/SharedMemory/PhysicsServerCommandProcessor.cpp b/examples/SharedMemory/PhysicsServerCommandProcessor.cpp index 2883b3b92..8ea61307b 100644 --- a/examples/SharedMemory/PhysicsServerCommandProcessor.cpp +++ b/examples/SharedMemory/PhysicsServerCommandProcessor.cpp @@ -1729,7 +1729,7 @@ void PhysicsServerCommandProcessor::deleteDynamicsWorld() delete m_data->m_collisionConfiguration; m_data->m_collisionConfiguration=0; - m_userConstraintUIDGenerator = 1; + m_data->m_userConstraintUIDGenerator = 1; }