| 531 | return true; |
| 532 | } |
| 533 | bool ui_HideCursor() { |
| 534 | if (UI_cursor_show) { |
| 535 | UI_cursor_show = 0; |
| 536 | return false; |
| 537 | } |
| 538 | return true; // cursor was hidden before. |
| 539 | } |
| 540 | // set user interface screen resolution |
| 541 | void ui_SetScreenMode(int w, int h) { |
| 542 | int old_w = UI_screen_width; |
no outgoing calls
no test coverage detected