| 272 | } |
| 273 | |
| 274 | void |
| 275 | cmov(int col, int row) |
| 276 | { |
| 277 | ttyDisplay->cury = (uchar) row; |
| 278 | ttyDisplay->curx = (uchar) col; |
| 279 | if (!iflags.grmode) { |
| 280 | txt_gotoxy(col, row); |
| 281 | #ifdef SCREEN_VGA |
| 282 | } else if (iflags.usevga) { |
| 283 | vga_gotoloc(col, row); |
| 284 | #endif |
| 285 | #ifdef SCREEN_VESA |
| 286 | } else if (iflags.usevesa) { |
| 287 | vesa_gotoloc(col, row); |
| 288 | #endif |
| 289 | } |
| 290 | } |
| 291 | |
| 292 | #if 0 |
| 293 | int |
nothing calls this directly
no test coverage detected