Subversion Repositories HelenOS-historic

Compare Revisions

Ignore whitespace Rev 1674 → Rev 1673

/uspace/trunk/console/console.c
173,8 → 173,7
if (scr->position_y >= scr->size_y) {
scr->position_y = scr->size_y - 1;
screenbuffer_clear_line(scr, scr->top_line);
scr->top_line = (scr->top_line+1) % scr->size_y;
screenbuffer_clear_line(scr, scr->top_line++);
if (console == active_console)
async_msg(fb_info.phone, FB_SCROLL, 1);
}
261,7 → 260,7
rc = async_req_2(fb_info.phone, FB_DRAW_TEXT_DATA, 0, 0, NULL, NULL);
};
if ((!interbuffer) || (rc != 0)) {
if ((!interbuffer) || (j != 0)) {
set_style(&conn->screenbuffer.style);
clrscr();
style = &conn->screenbuffer.style;