frees up on-state bitmaps
| 928 | |
| 929 | // frees up on-state bitmaps |
| 930 | void FreeTelComOnBitmaps(chunked_bitmap *array) { |
| 931 | if (!array) |
| 932 | return; |
| 933 | int count; |
| 934 | |
| 935 | // the first hotspot bitmap doesn't exist, so we can skip it |
| 936 | for (count = 1; count < hotspotmap.num_of_hotspots; count++) { |
| 937 | bm_DestroyChunkedBitmap(&array[count]); |
| 938 | } |
| 939 | } |
| 940 | |
| 941 | // This deactivates the TelCom system |
| 942 | void TelComDeactivate(void) { |
no test coverage detected