diff options
author | Alex AUVOLAT <alex.auvolat@ens.fr> | 2014-01-06 21:47:42 +0100 |
---|---|---|
committer | Alex AUVOLAT <alex.auvolat@ens.fr> | 2014-01-06 21:47:42 +0100 |
commit | c8a30baeb18756f2cc246de6a575943fcf9b7ed4 (patch) | |
tree | b01ed60279a135536e28c4ea864627505c9b1424 /monitor | |
parent | 55c894778414d0be0a04929770bc7d4862d416d0 (diff) | |
download | SystDigit-Projet-c8a30baeb18756f2cc246de6a575943fcf9b7ed4.tar.gz SystDigit-Projet-c8a30baeb18756f2cc246de6a575943fcf9b7ed4.zip |
Make sw/sb run in one tick less, correct scheduler.
Diffstat (limited to 'monitor')
-rw-r--r-- | monitor/disp.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/monitor/disp.c b/monitor/disp.c index 7b11bef..992c712 100644 --- a/monitor/disp.c +++ b/monitor/disp.c @@ -24,7 +24,7 @@ void disp_init() { noecho(); nonl(); - const int status_win_width = COLS / 2; + const int status_win_width = COLS - 58; wpstatus = newwin(LINES - 4, status_win_width, 1, 1); wpstatus2 = newwin(10, COLS - status_win_width - 3, 1, status_win_width + 2); wpoutput = newwin(LINES - 13, COLS - status_win_width - 3, 11, status_win_width + 2); |