Merge pull request #1373 from jonathantompson/save_world_fix

quick update to SAVE_WORLD for JOINT_GEAR.
This commit is contained in:
erwincoumans 2017-10-09 11:38:15 -07:00 committed by GitHub
commit 7c7b9735c4

View File

@ -3977,7 +3977,13 @@ bool PhysicsServerCommandProcessor::processCommand(const struct SharedMemoryComm
case ePoint2PointType:
{
sprintf(jointTypeStr,"p.JOINT_POINT2POINT");
break; }
break;
}
case eGearType:
{
sprintf(jointTypeStr,"p.JOINT_GEAR");
break;
}
default:
{
hasKnownJointType = false;