| 1180 | } |
| 1181 | |
| 1182 | void |
| 1183 | cmov(int x, int y) |
| 1184 | { |
| 1185 | if (x >= console.width) |
| 1186 | x = console.width - 1; |
| 1187 | if (y >= console.height) |
| 1188 | y = console.height - 1; |
| 1189 | |
| 1190 | ttyDisplay->cury = y; |
| 1191 | ttyDisplay->curx = x; |
| 1192 | |
| 1193 | set_console_cursor(x, y); |
| 1194 | } |
| 1195 | |
| 1196 | void |
| 1197 | nocmov(int x, int y) |
no test coverage detected