put the values on other pdcurses platforms back

They were set this way on other pdcurses platforms prior
to this recent change, so leave them at those values.
This commit is contained in:
nhmall
2026-05-16 22:13:40 -04:00
parent 125800404b
commit 8ce430bd89
+2 -2
View File
@@ -787,9 +787,9 @@ curses_init_options(void)
#else
/* FIXME: should these be higher; is there a way to detect max there? */
if (iflags.wc2_term_cols == 0)
iflags.wc2_term_cols = 80;
iflags.wc2_term_cols = 110;
if (iflags.wc2_term_rows == 0)
iflags.wc2_term_rows = 25;
iflags.wc2_term_rows = 32;
#endif
resize_term(iflags.wc2_term_rows, iflags.wc2_term_cols);
getmaxyx(base_term, term_rows, term_cols);