| 1146 | } |
| 1147 | |
| 1148 | static void set_console_cursor(int x, int y) |
| 1149 | { |
| 1150 | nhassert(x >= 0 && x < console.width); |
| 1151 | nhassert(y >= 0 && y < console.height); |
| 1152 | |
| 1153 | console.cursor.X = max(0, min(console.width - 1, x)); |
| 1154 | console.cursor.Y = max(0, min(console.height - 1, y)); |
| 1155 | } |
| 1156 | |
| 1157 | static void |
| 1158 | really_move_cursor(void) |
no outgoing calls
no test coverage detected