Re-copies data to each object from the appropriate page for that object type. Called after an object page has changed.
| 1203 | // Re-copies data to each object from the appropriate page for that object type. |
| 1204 | // Called after an object page has changed. |
| 1205 | void ObjReInitAll() { |
| 1206 | int objnum; |
| 1207 | object *objp; |
| 1208 | for (objnum = 0, objp = Objects; objnum <= Highest_object_index; objnum++, objp++) |
| 1209 | if (objp->type != OBJ_NONE) |
| 1210 | ObjInitTypeSpecific(objp, 1); |
| 1211 | } |
no test coverage detected