Move logwindow down once number of devices is known.
diff --git a/cgminer.c b/cgminer.c
index f61bf4d..596a21a 100644
--- a/cgminer.c
+++ b/cgminer.c
@@ -1278,11 +1278,14 @@ static void check_winsizes(void)
if (!use_curses)
return;
if (curses_active_locked()) {
- int __maybe_unused y, x;
+ int y, x;
- getmaxyx(statuswin, y, x);
+ x = getmaxx(statuswin);
wresize(statuswin, logstart, x);
- change_logwinsize();
+ getmaxyx(mainwin, y, x);
+ y -= logcursor;
+ wresize(logwin, y, x);
+ mvwin(logwin, logcursor, 0);
doupdate();
unlock_curses();
}