| 559 | } |
| 560 | |
| 561 | void |
| 562 | vesa_clear_screen(int colour) |
| 563 | { |
| 564 | vesa_FillRect(0, 0, vesa_x_res, vesa_y_res, colour); |
| 565 | if (iflags.tile_view) |
| 566 | vesa_clearmap(); |
| 567 | vesa_gotoloc(0, 0); /* is this needed? */ |
| 568 | } |
| 569 | |
| 570 | /* clear to end of line */ |
| 571 | void |
no test coverage detected