| 876 | |
| 877 | |
| 878 | void dBodySetAutoDisableFlag (dBodyID b, int do_auto_disable) |
| 879 | { |
| 880 | dAASSERT(b); |
| 881 | if (!do_auto_disable) b->flags &= ~dxBodyAutoDisable; |
| 882 | else b->flags |= dxBodyAutoDisable; |
| 883 | } |
| 884 | |
| 885 | |
| 886 | void dBodySetAutoDisableDefaults (dBodyID b) |
no outgoing calls
no test coverage detected