Changeset 7bc1e74 in mainline
- Timestamp:
- 2006-06-04T14:47:34Z (19 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 759c376
- Parents:
- 1160f8d
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
console/console.c
r1160f8d r7bc1e74 256 256 conn = &connections[active_console]; 257 257 258 curs_visibility(0); 258 set_style(&conn->screenbuffer.style); 259 curs_goto(conn->screenbuffer.position_y, conn->screenbuffer.position_x); 259 260 if (interbuffer) { 260 261 for (i = 0; i < conn->screenbuffer.size_x; i++) 261 262 for (j = 0; j < conn->screenbuffer.size_y; j++) 262 263 interbuffer[i + j*conn->screenbuffer.size_x] = *get_field_at(&(conn->screenbuffer),i, j); 263 264 /* This call can preempt, but we are already at the end */ 264 265 sync_send_2(fb_info.phone, FB_DRAW_TEXT_DATA, 0, 0, NULL, NULL); 265 266 } else { 267 curs_visibility(0); 266 268 clrscr(); 267 269 … … 273 275 } 274 276 275 } 276 curs_goto(conn->screenbuffer.position_y, conn->screenbuffer.position_x); 277 set_style(&conn->screenbuffer.style); 278 curs_visibility(1); 277 curs_visibility(1); 278 } 279 279 } 280 280 … … 376 376 377 377 screenbuffer_goto(&(connections[consnum].screenbuffer), IPC_GET_ARG2(call), IPC_GET_ARG1(call)); 378 curs_goto(IPC_GET_ARG1(call),IPC_GET_ARG2(call)); 378 379 379 380 break;
Note:
See TracChangeset
for help on using the changeset viewer.