| 317 | } |
| 318 | |
| 319 | void |
| 320 | nocmov(int col, int row) |
| 321 | { |
| 322 | if (!iflags.grmode) { |
| 323 | txt_gotoxy(col, row); |
| 324 | #ifdef SCREEN_VGA |
| 325 | } else if (iflags.usevga) { |
| 326 | vga_gotoloc(col, row); |
| 327 | #endif |
| 328 | #ifdef SCREEN_VESA |
| 329 | } else if (iflags.usevesa) { |
| 330 | vesa_gotoloc(col, row); |
| 331 | #endif |
| 332 | } |
| 333 | } |
| 334 | |
| 335 | void |
| 336 | standoutbeg(void) |
nothing calls this directly
no test coverage detected