Destroys the scanline
| 2071 | |
| 2072 | // Destroys the scanline |
| 2073 | void TelcomDestroyScanLine(void) { |
| 2074 | if (scanline_handle <= BAD_BITMAP_HANDLE) |
| 2075 | return; |
| 2076 | |
| 2077 | bm_FreeBitmap(scanline_handle); |
| 2078 | scanline_handle = -1; |
| 2079 | } |
| 2080 | |
| 2081 | // Loads the mouse cursor |
| 2082 | void TelcomLoadMouseCursor(void) { |
no test coverage detected