Skip to content
Snippets Groups Projects
Commit 5bce30a5 authored by rswindell's avatar rswindell
Browse files

Valid ANSI screen length range changed from 5-99 to 10-99.

Corsor position report logged.
parent 3ecb1563
No related branches found
No related tags found
No related merge requests found
......@@ -252,7 +252,9 @@ char sbbs_t::inkey(long mode)
if(i && !(useron.rows)) { /* auto-detect rows */
str[i]=0;
rows=atoi(str);
if(rows<5 || rows>99) rows=24; }
lprintf("Node %d ANSI cursor position report: %u rows"
,cfg.node_num, rows);
if(rows<10 || rows>99) rows=24; }
return(0); }
str[i++]=ch; }
else {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment