Changeset c891ed39 in mainline for console/console.c
- Timestamp:
- 2006-06-09T09:03:54Z (19 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 237867d
- Parents:
- bd02038
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
console/console.c
rbd02038 rc891ed39 174 174 if (scr->position_y >= scr->size_y) { 175 175 scr->position_y = scr->size_y - 1; 176 screenbuffer_clear_line(scr, scr->top_line++); 176 screenbuffer_clear_line(scr, scr->top_line); 177 scr->top_line = (scr->top_line+1) % scr->size_y; 177 178 if (console == active_console) 178 179 async_msg(fb_info.phone, FB_SCROLL, 1); … … 261 262 }; 262 263 263 if ((!interbuffer) || ( j!= 0)) {264 if ((!interbuffer) || (rc != 0)) { 264 265 set_style(&conn->screenbuffer.style); 265 266 clrscr();
Note:
See TracChangeset
for help on using the changeset viewer.