fix windows build for b3ResourcePath

replace print -> b3Printf in URDF2Bullet.cpp
This commit is contained in:
erwincoumans
2015-07-03 18:54:41 -07:00
parent 8517e85b21
commit 4630d0abb1
3 changed files with 44 additions and 30 deletions

View File

@@ -234,7 +234,7 @@ void ImportUrdfSetup::initPhysics()
//todo: move these internal API called inside the 'ConvertURDF2Bullet' call, hidden from the user
int rootLinkIndex = u2b.getRootLinkIndex();
printf("urdf root link index = %d\n",rootLinkIndex);
b3Printf("urdf root link index = %d\n",rootLinkIndex);
MyMultiBodyCreator creation(m_guiHelper);
ConvertURDF2Bullet(u2b,creation, identityTrans,m_dynamicsWorld,m_useMultiBody,u2b.getPathPrefix());