[bochs] Fix scroll:

This commit is contained in:
Kevin Lange 2011-03-28 21:34:02 -05:00
parent 43f820be04
commit e9aa992baf

View File

@ -235,7 +235,7 @@ void bochs_term_scroll() {
} }
for (uint16_t x = 0; x < TERM_WIDTH; ++x) { for (uint16_t x = 0; x < TERM_WIDTH; ++x) {
cell_set(x, TERM_HEIGHT-1,' ',current_fg, current_bg); cell_set(x, TERM_HEIGHT-1,' ',current_fg, current_bg);
cell_redraw(csr_x, csr_y); cell_redraw(x, TERM_HEIGHT-1);
} }
//bochs_redraw(); //bochs_redraw();
} }