| 254 | } |
| 255 | |
| 256 | void cl_eos(void) /* clear to end of screen */ |
| 257 | { |
| 258 | int cy = (int) ttyDisplay->cury + 1; |
| 259 | |
| 260 | if (!iflags.grmode) { |
| 261 | txt_cl_eos(); |
| 262 | #ifdef SCREEN_VGA |
| 263 | } else if (iflags.usevga) { |
| 264 | vga_cl_eos(cy); |
| 265 | #endif |
| 266 | #ifdef SCREEN_VESA |
| 267 | } else if (iflags.usevesa) { |
| 268 | vesa_cl_eos(cy); |
| 269 | #endif |
| 270 | } |
| 271 | tty_curs(BASE_WINDOW, (int) ttyDisplay->curx + 1, (int) ttyDisplay->cury); |
| 272 | } |
| 273 | |
| 274 | void |
| 275 | cmov(int col, int row) |
nothing calls this directly
no test coverage detected