From 2dee1638f48fa488a4477fad9f5db2a2d4aff014 Mon Sep 17 00:00:00 2001 From: Jonathan Tompson Date: Mon, 9 Oct 2017 10:48:03 -0700 Subject: [PATCH] quick update to SAVE_WORLD for JOINT_GEAR. --- examples/SharedMemory/PhysicsServerCommandProcessor.cpp | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/examples/SharedMemory/PhysicsServerCommandProcessor.cpp b/examples/SharedMemory/PhysicsServerCommandProcessor.cpp index 204d5e479..c4e4e257f 100644 --- a/examples/SharedMemory/PhysicsServerCommandProcessor.cpp +++ b/examples/SharedMemory/PhysicsServerCommandProcessor.cpp @@ -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;