| 2107 | int *idlist; // array of remapping indicies (list index->ship index) |
| 2108 | void Init() { idlist = NULL; } |
| 2109 | void Reset() { |
| 2110 | if (idlist) { |
| 2111 | mem_free(idlist); |
| 2112 | idlist = NULL; |
| 2113 | } |
| 2114 | } |
| 2115 | }; |
| 2116 | |
| 2117 | tCustomListInfo *lp_cust_bmps = NULL; |
no outgoing calls
no test coverage detected