| 1359 | void InitBigObjects() { Num_big_objects = 0; } |
| 1360 | |
| 1361 | void BigObjAdd(int objnum) { |
| 1362 | ASSERT(Num_big_objects < MAX_BIG_OBJECTS); |
| 1363 | if (Num_big_objects >= MAX_BIG_OBJECTS) { |
| 1364 | Int3(); |
| 1365 | return; |
| 1366 | } |
| 1367 | |
| 1368 | Objects[objnum].flags |= OF_BIG_OBJECT; |
| 1369 | BigObjectList[Num_big_objects++] = objnum; |
| 1370 | } |
| 1371 | |
| 1372 | void BigObjRemove(int objnum) { |
| 1373 | int i; |
no outgoing calls
no test coverage detected