Loads the mouse cursor
| 2080 | |
| 2081 | // Loads the mouse cursor |
| 2082 | void TelcomLoadMouseCursor(void) { |
| 2083 | TC_cursor = bm_AllocLoadFileBitmap("StdCursor.ogf", 0); |
| 2084 | if (TC_cursor == -1) |
| 2085 | TC_cursor = BAD_BITMAP_HANDLE; |
| 2086 | } |
| 2087 | |
| 2088 | // Renders the mouse cursor |
| 2089 | void TelcomRenderMouse(void) { |
no test coverage detected