move m_updateFlags to command, and make it 64bit

This commit is contained in:
erwin coumans
2015-07-23 10:51:09 -07:00
parent 812c67e221
commit 0fe6d343bc
3 changed files with 6 additions and 7 deletions

View File

@@ -563,7 +563,7 @@ void PhysicsServerSharedMemory::processClientCommands()
case CMD_SEND_PHYSICS_SIMULATION_PARAMETERS:
{
if (clientCmd.m_physSimParamArgs.m_updateFlags&SIM_PARAM_UPDATE_GRAVITY)
if (clientCmd.m_updateFlags&SIM_PARAM_UPDATE_GRAVITY)
{
btVector3 grav(clientCmd.m_physSimParamArgs.m_gravityAcceleration[0],
clientCmd.m_physSimParamArgs.m_gravityAcceleration[1],