- Timestamp:
- Jun 11, 2008, 6:23:46 PM (13 years ago)
- Location:
- neercs/trunk/src
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
neercs/trunk/src/main.c
r2359 r2360 286 286 j * YTAB + 1, screen_list->screen[j]->cv, NULL); 287 287 cucul_draw_cp437_box(cv, (n - 1 - j) * XTAB, j * YTAB, 288 w + (n - 1 - j) * XTAB + 1, h + j * YTAB + 2); 288 screen_list->screen[j]->w+1, 289 screen_list->screen[j]->h+1); 289 290 /* Set cursor to the correct position */ 290 291 if(i == n - 1) … … 380 381 s->init = 0; 381 382 382 383 383 s->buf = NULL; 384 384 s->total = 0; 385 s->w = w+1; 386 s->h = h+1; 385 387 s->fd = create_pty(command, w, h); 386 388 if(s->fd < 0) -
neercs/trunk/src/neercs.h
r2359 r2360 34 34 unsigned char *buf; 35 35 long int total; 36 37 int x, y; 36 38 int w, h; 37 39 };
Note: See TracChangeset
for help on using the changeset viewer.