Remove unnecessary console output.

This commit is contained in:
enn0x 2012-01-17 21:09:00 +00:00
parent 17f27744a9
commit 3ae3c26eb8

View File

@ -794,11 +794,6 @@ needBroadphaseCollision(btBroadphaseProxy* proxy0, btBroadphaseProxy* proxy1) co
CollideMask mask0 = node0->get_into_collide_mask();
CollideMask mask1 = node1->get_into_collide_mask();
// TODO
cout << node0->get_name() << " " << node1->get_name() << endl;
cout << mask0 << " " << mask1 << endl;
cout << ((mask0 & mask1) != 0) << endl;
return (mask0 & mask1) != 0;
}