PyBullet on Windows: disable harmless warning of not being able to connect to shared memory server.

This commit is contained in:
erwincoumans 2018-11-24 11:57:01 -08:00
parent bb6f4fb17c
commit cf48697fcf

View File

@ -91,7 +91,7 @@ void* Win32SharedMemory::allocateSharedMemory(int key, int size, bool allowCreat
}
else
{
b3Warning("Could not create file mapping object (%d).\n", GetLastError());
//b3Warning("Could not create file mapping object (%d).\n", GetLastError());
return 0;
}
}