From c8a30baeb18756f2cc246de6a575943fcf9b7ed4 Mon Sep 17 00:00:00 2001 From: Alex AUVOLAT Date: Mon, 6 Jan 2014 21:47:42 +0100 Subject: Make sw/sb run in one tick less, correct scheduler. --- monitor/disp.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'monitor') 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); -- cgit v1.2.3